./configure --prefix=/usr/local/php-5.6.4 --with-config-file-path=/usr/local/php-5.6.4/etc --with-mysql=/usr --with-mysqli=/usr/bin/mysql_config --enable-fpm
提示:configure: error: Cannot find MySQL header files under /usr.
去除 /usr
重新运行编译命令
./configure --prefix=/usr/local/php-5.6.4 --with-config-file-path=/usr/local/php-5.6.4/etc --with-mysql --with-mysqli=/usr/bin/mysql_config --enable-fpm
本文讲述了如何在编译PHP 5.6.4时修正因找不到MySQL头文件的问题,通过移除错误路径并调整编译参数--with-mysql,确保与mysqli正确连接。

900

被折叠的 条评论
为什么被折叠?



