Posted by Josip Dzolonga on 04/04/05 15:02
Dan Rossi wrote:
> I was wonderiing how I would go about something like this
>
> $class = 'classname';
>
> return $class::staticMethod(); , not happy isnt working. Any ideas
> lemme know.
>
class MyClass {
function static_method() {
echo 'I'm in static_method !';
}
}
You can call the function statically using the double colon ( :: )
operator :
MyClass::static_method();
I suggest you to take a good look here
http://www.php.net/manual/en/keyword.paamayim-nekudotayim.php
--
Josip Dzolonga
http://josip.dotgeek.org
jdzolonga[at]gmail.com
Navigation:
[Reply to this message]
|