linux不重新编译php增加openssl扩展


PHP代码

#下面是php的安装目录  

/usr/local/php5.3.8/bin/  

  #切换到php安装目录的 etx/openssl目录  

cd /php-5.3.8/ext/openssl  

  #查看openssl目录下有个config0.m4,把config0.m4改名为config.m4。  

cp config0.m4 config.m4  

  #依次执行:  

/usr/local/php5.3.8/bin/phpize  

  ./configure –with-openssl –with-php-config=/usr/local/php5.3.8/bin/php-config  

遇到错误configure: error: libssl not found!   yum install openssl-devel解决

  make && make install  

  #然后找到php.ini所在位置 打开 extension_dir(如果没有则自行添加), 同时添加 extension = "openssl.so"   

  #重启服务器 即可  

  #openssl 查看方法:  

/usr/local/php5.3.8/bin/php -i |grep openssl  

你可能感兴趣的:(linux,PHP,OpenSSL)