Re: calling static methods of variable class names

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Ahmed Saad wrote:
hi all,

how can i call static methods of a class whose name is variable.. something like
<? $className::doSomething(); // throws a parser error ?>
I can do this with reflection by creating a ReflectionMethod object
then invoke()ing it, but is there a better way?

try call_user_func() and/or call_user_func_array()

e.g.

call_user_func( array($className, 'doSomething') );

the array passed in this case is how one tells php the callback
function you are handing it is a class+method, you can also use this
callback notation to pass in an object+method.

Thanks

-ahmed

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


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux