So installieren Sie die Curl-Erweiterung in PHP: Laden Sie zuerst das Quellpaket herunter und entpacken Sie es, kompilieren Sie es dann vor und geben Sie den Installationsort an. Installieren Sie dann die Erweiterung über „make && make install“ und starten Sie php-fpm neu .
Empfohlen: „PHP-Video-Tutorial“
Die Schritte sind wie folgt:
(1、下载并安装 curl) #下载源码包 (源码包列表) https://curl.haxx.se/download/ 或 https://curl.haxx.se/download.html (或者直接下载7.55.1版本的curl包) wget https://curl.haxx.se/download/curl-7.55.1.tar.gz #解压 tar -zxvf curl-7.55.1.tar.gz #进入目录 cd curl-7.55.1 #预编译(并指定安装位置) mkdir /usr/local/lib/curl ./configure --prefix=/usr/local/lib/curl/ #安装 make && make install (2、生成 curl 扩展) #进入 php 源码包安装位置 cd /data/soft/php/ext/curl #生成 configure 文件 /usr/local/php/bin/phpize #预编译 ./configure --with-php-config=/usr/local/php/bin/php-config --with-curl=/usr/local/lib/curl #安装 make && make install (3、修改 php.ini) extension_dir="/usr/local/php/lib/php/extensions/no-debug-zts-20121212/" extension=curl.so (4、重启php-fpm) /usr/local/nginx/sbin/nginx -s stop #先暂停一下 nginx pkill php-fpm #杀死 php-fpm /usr/local/php/sbin/php-fpm #开启 php-fpm /usr/local/nginx/sbin/nginx #开启 nginx
Das obige ist der detaillierte Inhalt vonInformationen zur PHP-Installation der Curl-Erweiterung. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!