Christopher Fulton wrote:
This should work for you then....(maybe...i don't have php5 on my
system, so it may not, but i think it would.
http://us4.php.net/manual/en/function.get-class.php

class Car {
        function drive() {
             return get_class($this);
        }
 }

 class Porshe {
 }

$foo = new Porshe();
echo $foo->drive();


He needs a static function, ie Porche::drive()

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to