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

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



Reply via email to