|
Posted by PaowZ on 10/08/07 22:09
Hello there!
I have to call a bunch of static functions where class names are
stored in a array.
So I have: $my_array = array("class_1","class_2", ... and so on...)
So I tried this piece of code to call static functions attached to
each classes like that:
foreach($my_array as $classname)
$classname::MyStaticFunc(...);
...and I get this error: Parse error: syntax error, unexpected
T_PAAMAYIM_NEKUDOTAYIM (by the way, if someone could tell me what
language is T_PAAMAYIM_NEKUDOTAYIM..) PHP5 can't do it magically..
Any help would be greatly appreciated :)
Thanks..
Navigation:
[Reply to this message]
|