Home > Article > Backend Development > How to install curl extension in php under windows
How to install the curl extension in PHP under Windows: 1. Copy the files php_curl.dll, libeay32.dll, and ssleay32.dll to the system32 directory; 2. Enable the php_curl.dll extension; 3. Restart the PHP service.
Recommended: "PHP Video Tutorial"
win php installation curl extension
Windows
1. Copy the three files php_curl.dll, libeay32.dll, and ssleay32.dll in the PHP folder to C:\WINDOWS\system32 of the system;
2. Remove the semicolon from extension=php_curl.dll in php.ini;
3. Restart the service.
The above is the detailed content of How to install curl extension in php under windows. For more information, please follow other related articles on the PHP Chinese website!