linux下 php安装expect扩展-女黑客 - Powered by Discuz! Archiver

nvhack 发表于 2021-4-4 00:08:28

linux下 php安装expect扩展


安装peclsudo -i   #切换到root
cd /www/server/php/72/bin#我的php安装目录
wget http://pear.php.net/go-pear.phar -O go-pear.php
php go-pear.php安装扩展
pecl search key-word    #查找扩展
pecl install key-word   #安装扩展
遇到问题1 在php.ini配置文件下找到如下内容:
disable_functions=
去掉后面被禁用的popen()方法。
遇到的问题2
configure: error: Cannot find php-config上面的报错处理:在/usr/bin下执行 ln -s /www/server/php/72/bin/php-config php-config 即可。




页: [1]
查看完整版本: linux下 php安装expect扩展