i have this code:
protected $val = Zend_Registry::get('values');
Whenever I put this piece of code I get:
Parse error: syntax error, unexpected '(', expecting ',' or ';' in ...
Why is it happening?
|
i have this code: Whenever I put this piece of code I get: Why is it happening? |
|||
|
|
|
You cannot use a function call or other dynamic expression to initialize a class property. It can only be a constant or atomic value. If you need to initialize it with a function call, you must do this instead inside the constructor.
|
|||
|
|
|
You can not use the return-value of a function for the initial value of a class-variable. You can however set it in the constructor of the class.
|
|||
|
|
|
Because that looks like a class variable and you cant assign data to a class variable like that. See here http://www.php.net/manual/en/language.oop5.properties.php You could do it like this.
|
||||
|
|