win7 Solution to php_curl not working: 1. Remove the semicolon before "extension=curl"; 2. Put "libssh2.dll" in the php directory into the bin directory of the apache installation directory; 3. Restart apache.
The operating environment of this tutorial: Windows 7 system, PHP version 8.1, Dell G3 computer.
What should I do if php_curl cannot be used in win7? php7 does not support curl?
Ultimate solution:
1. Remove the semicolon before extension=curl;
2. Place libssh2.dll in the php directory into the apache installation directory bin directory
3. Restart apache
ok, perfect solution
Related introduction:
PHP supported libcurl library created by Daniel Stenberg allows you to Connect and communicate with various servers using various types of protocols.
libcurl currently supports http, https, ftp, gopher, telnet, dict, file and ldap protocols. libcurl also supports HTTPS authentication, HTTP POST, HTTP PUT, FTP upload (this can also be completed through PHP's FTP extension), HTTP form-based upload, proxy, cookies and username and password authentication.
Recommended learning: "PHP Video Tutorial"
The above is the detailed content of What to do if php_curl cannot be used in win7. For more information, please follow other related articles on the PHP Chinese website!