Parse error: syntax error, unexpected T_FUNCTION, expecting ')'该如何解决
程序员文章站
2022-06-11 14:55:36
...
Parse error: syntax error, unexpected T_FUNCTION, expecting ')'
$c = array_map(function($chicun, $max_chicun) { return $chicun > $max_chicun ? 1 : 0; }, $chicun, $max_chicun);
报错Parse error: syntax error, unexpected T_FUNCTION, expecting ')'
请问什么原因?测试服务器上是没问题的,放在正式用的服务器上就报错
------解决思路----------------------
闭包只在 php 5.3 及以后才有,请检查你的 php 版本
其他的途径
1、定义常规函数用于回调
2、用 create_function 建立回调函数
$c = array_map(function($chicun, $max_chicun) { return $chicun > $max_chicun ? 1 : 0; }, $chicun, $max_chicun);
报错Parse error: syntax error, unexpected T_FUNCTION, expecting ')'
请问什么原因?测试服务器上是没问题的,放在正式用的服务器上就报错
------解决思路----------------------
闭包只在 php 5.3 及以后才有,请检查你的 php 版本
其他的途径
1、定义常规函数用于回调
2、用 create_function 建立回调函数
相关文章
相关视频
下一篇: 鸡蛋茶树菇怎么做好吃
推荐阅读
-
PHP错误Parse error: syntax error, unexpected end of file in test.php on line 12解决方法
-
PHP Parse Error: syntax error, unexpected $end 错误的解决办法
-
PHP异常Parse error: syntax error, unexpected T_VAR错误解决方法
-
Parse error: syntax error, unexpected T_PAAMAYIM_NEKUDOTAYIM, expecting 异常怎么解决
-
PHP异常Parse error: syntax error, unexpected错误解决方法
-
Parse error: syntax error, unexpected T_FUNCTION, expecting ')'该如何解决
-
PHP异常Parse error: syntax error, unexpected T_VAR错误解决方法
-
PHP异常Parse error: syntax error, unexpected T_VAR错误解决方法
-
Parse error: syntax error, unexpected 'include' (T_INCLUDE) in D:mywebadd.php解决方案
-
最后的分了 。Parse error: syntax error, unexpected T_OBJECT_OPERATOR, expecting ',' or ';是什么意思解决思路