php Programming Glossary: func_static
What's the difference between :: (double colon) and -> (arrow) in PHP? http://stackoverflow.com/questions/3173501/whats-the-difference-between-double-colon-and-arrow-in-php same as the statement above public static function func_static echo in __METHOD__ n public function __call name arguments echo.. n echo 'B prop_static ' B prop_static n echo 'B func_static ' B func_static n a new A b new B echo ' b prop_instance ' b.. 'B prop_static ' B prop_static n echo 'B func_static ' B func_static n a new A b new B echo ' b prop_instance ' b prop_instance n..
|