Contact: aviboots(AT)netvision.net.il
39,851 questions
51,772 answers
573 users
class cl { static function s_func() { echo "PHP OOP"; } } call_user_func(array('cl', 's_func')); /* run: PHP OOP */
class cl { static function s_func() { echo "PHP OOP"; } } call_user_func('cl::s_func'); /* run: PHP OOP */