2013-12-09 86 views
7

我:匿名函数不起作用:函数名必须是一个字符串

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 %s\r\n", $name); 
}; 

$greet('PHP'); 

我收到此错误:

Fatal error: Function name must be a string 

在PHP 5.3.10-1ubuntu3.8上它正在运行。有没有人发生了什么事?

+3

[无法确认?(http://3v4l.org/AM45b) – h2ooooooo

+1

这可能对问题毫无关系,但是哪个版本的PHP是真的?在你的文章的第一部分,你说5.4.20。在最后一句中,你说5.3.10。 – Kyle

+0

适用于'PHP 5.5.5(cli)' – AbraCadaver

回答

0

顺便说一句,我注意到的问题与此服务器(这是客户端的VPN服务器),当我上载的symfony应用程序,我得到这个错误

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 
1

其因eAccelerator在,你应该禁用它

要关闭eAccelerator在,做以下修改您的的php.ini配置:

eaccelerator.enable 0 
eaccelerator.optimizer 0 

的.htaccess文件

php_flag eaccelerator.enable 0 
php_flag eaccelerator.optimizer 0 
相关问题