SyntaxFix
Write A Post
Hire A Developer
Questions
So basically it is an old style and do not use it for newer version of PHP. Better to use Public keyword instead;if you are not in love with var keyword. So instead of using
class Test { var $name; }
Use
class Test { public $name; }