I found this in code, what does it mean and whats the difference between that and normal $dir variable?
global ${$dir};
$this->{$dir} = new $class();
|
I found this in code, what does it mean and whats the difference between that and normal $dir variable?
|
|||||
|
|
Its called complex curly syntax.
More info: http://www.php.net/manual/en/language.types.string.php#language.types.string.parsing.complex |
|||
|
|
|
It is taking the value of the So if Likewise, if http://www.php.net/manual/en/language.variables.variable.php |
|||
|
|
|
A dynamically created variable. For example:
|
|||
|
|
|
Its called complex curly syntax. Any scalar variable, array element or object property with a string representation can be included via this syntax. Simply write the expression the same way as it would appear outside the string, and then wrap it in More info: http://www.php.net/manual/en/language.types.string.php#language.types.string.parsing.complex |
||||
|
|