$func = function(){ echo 'this is a test'; }; echo $func(); 把它付给变量后,function会出错 为啥??? Catchable fatal error: Object of class Closure could not be converted to string in D:\phpStudy\WWW\php1\2.php on line 31
PHP版本的问题
PHP版本过低
setInterv('changeColor()',300);
你发的这段是没有问题的,错误行数在31行,恕我直言,你没动脑子
$func = function(){ echo 'this is a test'; }; echo $func();
这段没有问题。