In an obsolete php script, I found the following line of code:
$CacheLite =& ( "string" );
This causes an error:
Parse error: syntax error, unexpected '(', expecting T_NEW or T_STRING or T_VARIABLE or '$'
This is a mistake or a method of passing by reference or something else that I do not know. Do I have to enable / disable something in my php configuration in order for this to work?
source
share