Home > Article > Backend Development > Install PHP curl extension in Linux
# Recommended: "How to install the php extension curl on Linux: first enter the PHP source code directory; then call the phpize program to generate the compilation configuration file; then call configure to generate the Makefile file; and finally compile and install it.
PHP Video Tutorial》
I encountered such a problem during development today, that is, how to install the curl extension of PHP under Linux. My LNMP environment was originally compiled and installed, not installed using YUM. of. My environment:Linux: CentOs 6.4
PHP: 5.6.30
1. Enter the PHP source code directory, where you downloaded PHP to Server and decompressed address
cd /usr/local/src/php-5.6.302. Perform ext/curl
cd ext/curlin the PHP source directory. 3. Call the phpize program to generate the compilation configuration file
/usr/local/php/bin/phpize4. Call configure Generate Makefile
./configure --with-curl=/usr/local/curl --with-php-config=/usr/local/php/bin/php-config5. Compile and install
make & make installYou will be prompted for the path to generate the file curl.so:
/usr/local/php/ lib/php/extensions/no-debug-non-zts-20131226/6. Modify the php.ini file
vim /usr/local/php/lib/php.ini extension=/usr/local/php/lib/php/extensions/no-debug-non-zts-20131226/curl.so7. Detect
/usr/local/php/bin/php -mif Seeing a curl item indicates a successful installation8. Restart php-fpm
pkill -9 php-fpm./sbin/php-fpmOK!
The above is the detailed content of Install PHP curl extension in Linux. For more information, please follow other related articles on the PHP Chinese website!