可能重复:
意外的 T_FUNCTION,但在哪里?
下面这行 PHP 代码在我的生产服务器 WAMP 上运行良好,没有任何错误,
$filtered_seats = array_filter($seats, function ($seat) use ($seat_no) { return ($seat != $seat_no); } );
但是当上线时,在 Linux 服务器上,它退出并出现以下错误
Parse error: syntax error, unexpected T_FUNCTION in /home/oya/public_html/ajax.php on line 514
请任何人解释为什么会发生这种情况?谢谢。