Ejemplo n.º 1
0
<?php

class foo
{
    function sayMyName()
    {
        // echo "I am: {get_class($this)}."; // does not work, fatal error
        echo 'I am: ' . get_class($this) . '.';
        // need the $this, otherwise get "foo" as output
    }
}
class bar extends foo
{
}
$bar = new bar();
$bar->sayMyName();