Jupyter-PHP-Installer
Jupyter-PHP-Installer copied to clipboard
use & result is wrong
trafficstars
$a=7; $b=&$a; $a=5; echo $b; this demo i just learn from book,the result should be 5, but the actual result is 7 in jupyter notebook;