为啥 PHP 模块没有加载到 PHP 中?

Posted

技术标签:

【中文标题】为啥 PHP 模块没有加载到 PHP 中?【英文标题】:Why a PHP module is not loaded into PHP?为什么 PHP 模块没有加载到 PHP 中? 【发布时间】:2020-11-18 21:28:21 【问题描述】:

展示我的案例如何调试问题,即 php 模块未加载到 PHP 中。

我使用 OpenSUSE v42.2 Linux 操作系统,带有 Apache 网络服务器、PHP v7.1、mysql

因为它没有提供我需要的 PHP v7.1,所以我从源代码构建了 PHP v7.1。 使用 PHP-FPM。

我把它安装到了

/opt/php-7.1/

php.ini 位于:

/opt/php-7.1/lib/php.ini

我发现,那个 opcache 被安装到

/opt/php-7.1/lib64/extensions/no-debug-non-zts-20160303/opcache.so

我编辑了 php.ini 并添加了以下行:

zend_extension=/opt/php-7.1/lib64/extensions/no-debug-non-zts-20160303/opcache.so

重启:

systemctl restart php-7.1-fpm.service
systemctl restart apache2.service

但我仍然得到以下结果:

php -m
[PHP Modules]
bcmath
bz2
calendar
Core
ctype
curl
date
dom
exif
fileinfo
filter
ftp
gd
gettext
hash
iconv
imap
intl
json
libxml
mbstring
mcrypt
mysqli
mysqlnd
openssl
pcntl
pcre
PDO
pdo_mysql
pdo_pgsql
pdo_sqlite
pgsql
Phar
posix
Reflection
session
SimpleXML
soap
sockets
SPL
sqlite3
standard
sysvsem
sysvshm
tokenizer
xml
xmlreader
xmlrpc
xmlwriter
xsl
zip
zlib

[Zend Modules]

[Zend Modules] 中缺少 opcache。

但在配置中有'--enable-opcache':

php -i | grep -i opcache

配置命令 => './configure' '--prefix=/opt/php-7.1' '--with-pdo-pgsql' '--with-zlib-dir' '--with-freetype-dir ' '--enable-mbstring' '--with-libxml-dir=/usr' '--enable-soap' '--enable-intl' '--enable-calendar' '--with-curl' '--with-mcrypt' '--with-gd' '--with-pgsql' '--disable-rpath' '--enable-inline-optimization' '--with-bz2' '--with-zlib' '--enable-sockets' '--enable-sysvsem' '--enable-sysvshm' '--enable-pcntl' '--enable-mbregex' '--enable-exif' '--enable-bcmath' '--with-mhash' '--enable-zip' '--with-pcre-regex' '--with-pdo-mysql' '--with-mysqli' '--with-mysql-sock=/var/run/mysql/mysql.sock' '--with-xpm-dir=/usr' '--with-webp-dir=/usr' '--with-jpeg-dir=/usr' '--with-png-dir=/usr' '--enable-gd-native-ttf' '--with-openssl' '--with-fpm-user=wwwrun' '--with-fpm-group=www' '--with-libdir=lib64' '--enable-ftp' '--with-imap' '--with-imap-ssl' '--with-kerberos' '--with-gettext' '--with-xmlrpc' '--with-xsl' '--enable-opcache' '--enable-fpm'

我也尝试指定为:

zend_extension=opcache

但我得到了相同的结果,opcache 仍然丢失。

如何修复启用 opcache?

【问题讨论】:

【参考方案1】:

在我的例子中,受影响的模块是opcache PHP 模块。

解决方案:

我注意到,在 phpinfo 中,“display_errors”本地值为 OFF,Master 值为 ON。 因为Master的值来自于php.ini,而/opt/php-7.1/lib/php.ini中有“display_errors = Off”,说明这个php.ini没有加载。

还发现,“Loaded Configuration File”字段值为空,所以也说明php.ini没有加载。

但是 php.ini 位于(并且应该从以下位置加载):/opt/php-7.1/lib/php.ini

此外,我注意到,在 phpinfo 中,“Configuration File (php.ini) Path”设置为:“/opt/php-7.1/lib64” 所以这意味着 php.ini 应该位于/opt/php-7.1/lib64/ 目录。

第 1 步修复:

copy php.ini 
from 
/opt/php-7.1/lib/php.ini
to
/opt/php-7.1/lib64/php.ini

在命令行中:

cp -p /opt/php-7.1/lib/php.ini /opt/php-7.1/lib64/php.ini

还注意到,php 是用'--with-libdir=lib64' 参数编译的。

这很可能意味着“opcache.so”文件应该在这个目录下。

目前“opcache.so”位于目录:“/opt/php-7.1/lib64/extensions/no-debug-non-zts-20160303/”。 我想把“opcache.so”放到“/opt/php-7.1/lib64/extensions/”就足够了。 这成为了最终的解决方案。

第 2 步修复:

copy opcache.a & opcache.so
from 
/opt/php-7.1/lib64/extensions/no-debug-non-zts-20160303/
to
/opt/php-7.1/lib64/extensions/

在命令行中:

cp -p /opt/php-7.1/lib64/extensions/no-debug-non-zts-20160303/opcache.* /opt/php-7.1/lib64/extensions/

第 3 步修复:

重新启动 Apache 和 PHP-FPM(可选,如果使用):

service apache2 restart
service php-7.1-fpm restart

完成这 3 个修复步骤后,PHP opcache module is loaded successfully.

结果:

php -m
[PHP Modules]
bcmath
bz2
calendar
Core
ctype
curl
date
dom
exif
fileinfo
filter
ftp
gd
gettext
hash
iconv
imap
intl
json
libxml
mbstring
mcrypt
mysqli
mysqlnd
openssl
pcntl
pcre
PDO
pdo_mysql
pdo_pgsql
pdo_sqlite
pgsql
Phar
posix
Reflection
session
SimpleXML
soap
sockets
SPL
sqlite3
standard
sysvsem
sysvshm
tokenizer
xml
xmlreader
xmlrpc
xmlwriter
xsl
Zend OPcache
zip
zlib

[Zend Modules]
Zend OPcache

【讨论】:

以上是关于为啥 PHP 模块没有加载到 PHP 中?的主要内容,如果未能解决你的问题,请参考以下文章

PHP动态扩展模块安装

88.PHP扩展模块安装

win10安装composer时,提示找不到php拓展的模块,这是为啥

接收 PHP 警告:模块 '[module name]' 已加载到第 0 行的未知中

将php作为一个模块供给Apache加载

PHP为一个模块