匿名函数不起作用:函数名称必须是字符串

  • 本文关键字:函数 字符串 不起作用 php
  • 更新时间 :
  • 英文 :


我有:

PHP Version 5.4.20
'./configure' '--disable-fileinfo' '--enable-bcmath' '--enable-calendar' '--enable-ftp' '--enable-gd-native-ttf' '--enable-libxml' '--enable-mbstring' '--enable-pdo=shared' '--enable-soap' '--enable-sockets' '--enable-zip' '--prefix=/usr/local' '--with-apxs2=/usr/local/apache/bin/apxs' '--with-curl=/opt/curlssl/' '--with-freetype-dir=/usr' '--with-gd' '--with-imap=/opt/php_with_imap_client/' '--with-imap-ssl=/usr' '--with-jpeg-dir=/usr' '--with-kerberos' '--with-libdir=lib64' '--with-libxml-dir=/opt/xml2' '--with-libxml-dir=/opt/xml2/' '--with-mcrypt=/opt/libmcrypt/' '--with-mysql=/usr' '--with-mysql-sock=/var/lib/mysql/mysql.sock' '--with-openssl=/usr' '--with-openssl-dir=/usr' '--with-pcre-regex=/opt/pcre' '--with-pdo-mysql=shared' '--with-pdo-sqlite=shared' '--with-pic' '--with-png-dir=/usr' '--with-xpm-dir=/usr' '--with-zlib' '--with-zlib-dir=/usr' 

我测试这个代码:

$greet = function($name) {
    printf("Hello %srn", $name);
};
$greet('PHP');

我得到这个错误:

Fatal error: Function name must be a string

在PHP版本5.3.10-1ubuntu3.8上,它可以正常工作。有人知道发生了什么事吗?

嗯,我想我刚刚发现:(:http://snippets.webaware.com.au/howto/eaccelerator-and-php-closures-dont-mix

这是因为eAccelerator,您应该禁用它

要关闭eAccelerator,请在php.ini配置中进行以下更改:

eaccelerator.enable 0
eaccelerator.optimizer 0

或在.htaccess文件中

php_flag eaccelerator.enable 0
php_flag eaccelerator.optimizer 0

Btw,当我上传symfony应用程序时,我注意到这个服务器(它是客户端的VPN服务器)有问题,我得到了这个错误

ContextErrorException: Warning: preg_replace_callback(): Requires argument 2, '', to be a valid callback in /home/client/vendor/symfony/symfony/src/Symfony/Component/Yaml/Unescaper.php line 56

相关内容

  • 没有找到相关文章

最新更新