tags:

views:

41

answers:

1

My local computer runs PHP 5.3.2, while my server runs 5.2.5. I get

Parse error: syntax error, unexpected T_PAAMAYIM_NEKUDOTAYIM

with

$productsIterator = $productModule::load(Phlex_Db_Order::Asc('name'));

I assume the error happens because PHP 5.2.5 doesn't support $stringClassName::methodName() syntax.

Does anyone know either 1) a workaround or 2) some other reason this is happening?

+6  A: 

One workaround will be

 call_user_func(array($productModule, "load"), Phlex_Db_Order::Asc('name'));

or, according to the manual since 5.2.3:

 call_user_func($productModule."::load", Phlex_Db_Order::Asc('name'));

Only one thing to note:

the parameters for call_user_func() are not passed by reference.

And for completeness' sake, you are right, "dynamic" calling of static methods was added in 5.3.0. From the PHP 5 change log:

Added support for dynamic access of static members using $foo::myFunc(). (Etienne Kneuss)

Pekka
+1, and if you need pass by reference, you can use `call_user_func_array($callback, array(`...
ircmaxell