php不用编译增加openssl的方法

#下面是php的安装目录  
/usr/local/php5/bin/  
  
#切换到php安装目录的 etx/openssl目录  
cd /php-5.3.8p/ext/openssl  
  
#查看openssl目录下有个config0.m4,把config0.m4改名为config.m4。  
cp config0.m4 config.m4  
  
#依次执行:  
/usr/local/php5/bin/phpize  
  

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

   make && make install      #然后找到php.ini所在位置 打开 extension_dir(如果没有则自行添加), 同时添加 extension = "openssl.so"       #重启服务器 即可      #openssl 查看方法:   /usr/local/php5/bin/php -i |grep openssl  


注意:红色部分参数顺序问题,如果出现 没有发现文件或目录  那果断换参数的顺序吧

你可能感兴趣的:(php不用编译增加openssl的方法)