日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > php >内容正文

php

php cur https,解决php-curl不支持https问题

發布時間:2025/3/21 php 48 豆豆
生活随笔 收集整理的這篇文章主要介紹了 php cur https,解决php-curl不支持https问题 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

主要原因是因為之前安裝的 curl 不支持 https 協議,導致 php-curl 也不支持 https 協議

#/server/app/services/bin/curl -V ? 查看curl 的版本號,和支持的協議

解決方法:

1> 重新編譯安裝新版本 curl

#cd /server/install/

#tar -xvf curl-7.37.0.tar.gz

#cd curl-7.37.0

#./configure --prefix=/server/app/services

#make && make install

#/server/app/services/bin/curl -V ? (查看是否支持https)

2> 重新編譯安裝 php ,具體參考 文件中,php 的編譯部分

#cd /server/install/php-5.3.20

#make clean

#rm -f configure

#./buildconf --force

#./configure --prefix=/server/app/services/ --with-libxml-dir=/server/app/services/ --with-config-file-path=/server/app/services/ --enable-fastcgi --enable-force-cgi-redirect --with-curl=/server/app/services --enable-apc --enable-memcache --with-zlib-dir=/server/app/services/ --with-zlib --with-libmemcached-dir=/server/app/services/ --enable-memcached --enable-sockets --enable-fpm --enable-pdo ?--enable-mysqlnd --with-pdo-mysql=mysqlnd --with-mysqli=mysqlnd --with-mysql=mysqlnd --with-openssl --with-freetype=/usr/local/freetype/ --enable-ftp ?--enable-gd-native-ttf --enable-gd-jis-conv

#make

#make install

#reboot

查看 phpinfo() 頁面,搜索 curl ,確定是否已經支持 https 協議

閱讀(8593) | 評論(0) | 轉發(2) |

總結

以上是生活随笔為你收集整理的php cur https,解决php-curl不支持https问题的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。