In the php 5.3 I can use class name as variable and I can call static variable.
$class_name = 'Test';
$class_name::$static_var;
How to call it in the php 5.2 version?
Parse error: syntax error, unexpected T_PAAMAYIM_NEKUDOTAYIM in ...
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
T_PAAMAYIM_NEKUDOTAYIM is the double colon scope resolution thingy PHP uses – ::
You can try this
$class_name = ‘Test’; $class_name->$static_var;