echo '4. Use function to create a self-executing function: <br>';
echo (function ($a,$b){
return $a.' ' .$b.'='.($a $b);
})(20,30);
How to display Parse error: syntax error, unexpected ';' in
ringa_lee2017-12-05 20:46:08
Versions below php 7 do not support this writing method. You can try changing to php7 and it can be output! !