我刚刚用 --enable-pcntl 编译了我的 PHP,但是当我尝试访问 PHP 中的过程控制函数时,我得到:
Fatal error: Call to undefined function pcntl_fork()
我错过了什么吗?我的 apache 没有用 prefork 编译。这是工作所必需的吗?
完整的 PHP 编译标志:
'./configure'
'--prefix=/usr/local/lib64/php'
'--with-libdir=lib64'
'--with-apxs2=/usr/local/lib64/apache2/bin/apxs'
'--with-mysql'
'--enable-xml'
'--with-curl'
'--with-gd'
'--enable-soap'
'--with-xmlrpc'
'--with-mysqli'
'--with-unixODBC=/usr/'
'--with-pdo-mysql'
'--with-oci8=shared,instantclient,/usr/lib/oracle/11.2/client64/lib'
'--with-mcrypt'
'--enable-mbstring'
'--with-zlib=/usr'
'--with-openssl'
'--enable-sockets'
'--with-mssql=/usr/local'
'--enable-ftp'
'--enable-zip'
'--enable-pcntl'
阿帕奇模块:
core mod_so http_core event mod_authn_file mod_authn_core mod_authz_host mod_authz_groupfile mod_authz_user mod_authz_core mod_access_compat mod_auth_basic mod_reqtimeout mod_filter mod_mime mod_log_config mod_env mod_headers mod_setenvif mod_version mod_unixd mod_dav mod_status mod_autoindex mod_dav_fs mod_dir mod_alias mod_rewrite mod_php5
编辑: 也许我不够清楚。我不会使用来自 Web 服务器的 pcntl 函数。我想重申,我的 pcntl 函数也没有在命令行中工作。对此有任何想法吗?