Home  >  Article  >  Backend Development  >  Let the server support the PHP curl function to enable the CURL extension_PHP tutorial

Let the server support the PHP curl function to enable the CURL extension_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 14:53:56702browse

Curl(), file_get_contents(), and snoopy.class.php are the three tools used in remote page crawling or collection. I still prefer to use snoopy.class.php because of its efficiency. It is relatively high and does not require server-specific configuration support. It can be used in ordinary virtual hosts. file_get_contents() is slightly less efficient. In common failure situations, curl() is very efficient. It supports multi-threading, but you need to enable the curl extension. . The following are the steps to enable curl extension:

1. Copy the three files php_curl.dll, libeay32.dll, ssleay32.dll under the PHP folder to system32;

2. Remove the semicolon in extension=php_curl.dll in php.ini (c:WINDOWS directory);

3. Restart apache or IIS.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/364679.htmlTechArticlecurl(), file_get_contents(), snoopy.class.php are used for crawling or collecting three remote pages Among the tools available, I still prefer to use snoopy.class.php because it is more efficient and does not require...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn