Hi All,
Is it possible to pass values by Reference in Phalcon? This simple code does not work :
$x = 10;
echo $x;
&$x = 11;
echo $x; // should be 11 but does not work in phalcon
Hi All,
Is it possible to pass values by Reference in Phalcon? This simple code does not work :
$x = 10;
echo $x;
&$x = 11;
echo $x; // should be 11 but does not work in phalcon