我执行 phpize.. 当我到达 ./configure 它告诉我它可以找到 php-config ( configure: error: Cannot find php-config. Please use --with-php-config=PATH
) 我认为这意味着一个名为php-config
I do的文件./configure --with-php-config=/usr/local/src/php5/php-5.3.5/scripts/ --enable-entities
指向该文件的目录,但我仍然遇到同样的错误。
php-config
是一个 shell 脚本(可执行程序),它应该是 PHP 安装的一部分。通常这会在你的 上$PATH
,但在你的情况下它不是。找到该程序,并指定其完整路径(例如
--with-php-config=/usr/local/apache/PHP/bin/php-config
)以解决错误消息。如果您不知道脚本在哪里,可以使用
locate
或find
命令帮助您找到它。