PHP cURL User Manual

Source: Internet
Author: User

In

PHP cURL can be used to easily and effectively capture webpages. You only need to run a script, analyze the web page you crawled, and then you can get the data you want as a program. Whether you want to retrieve part of the data from a link or an XML file and import it to the database, you may simply get the webpage content, PHP cURL is a powerful PHP library. This article describes how to use this PHP library.

Enable PHP cURL settings

First, we must first determine whether PHP has enabled this library. You can use the php_info () function to obtain this information.

<? Phpphpinfo ();? >
 

If you can see the following output on the webpage, it indicates that the PHP cURL library has been enabled.

If you see this, you need to set your PHP and enable this library. If you are on Windows, it is very simple. You need to modify the settings of your php. ini file, find php_curl.dll, and cancel the semicolon comment. As follows:

// Cancel the comment extension = php_curl.dll
 

If you are in Linux, You need to recompile your PHP. During editing, you need to open the compilation parameter -- add the "-with-curl" parameter to the configure command.

A small example

If everything is ready, the following is a small routine:

<? Php
// Initialize a PHP cURL object
$ Curl = curl_init ();

// Set the URL you want to capture
Curl_setopt ($ curl, CURLOPT_URL, 'HTTP: // cocre.com ');

// Set the header
Curl_setopt ($ curl, CURLOPT_HEADER, 1 );

// Set the PHP cURL parameter. The result must be saved to the string or output to the screen.
Curl_setopt ($ curl, CURLOPT_RETURNTRANSFER, 1 );

// Run cURL to request the webpage
$ Data = curl_exec ($ curl );

// Close the URL request
Curl_close ($ curl );

// Display the obtained data
Var_dump ($ data );
 

How to POST data

The above is the code for capturing web pages, and the following is to POST data to a Web page. Suppose we have a form processing URL http://www.example.com/sendsms.php, which can accept two single table domain, one is the phone number, and the other is the SMS content.


 

 
 
  1. ﹤ ?php  
  2. $phoneNumber = '13912345678';  
  3. $message = 'This message was generated by curl and php';
  4. $curlPost = 'pNUMBER=' . urlencode($phoneNumber) . 
  5. '&MESSAGE=' . urlencode($message) . 
  6. '&SUBMIT=Send';  
  7. $ch = curl_init();  
  8. curl_setopt($ch, CURLOPT_URL, 
    'http://www.example.com/sendSMS.php');  
  9. curl_setopt($ch, CURLOPT_HEADER, 1);  
  10. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);  
  11. curl_setopt($ch, CURLOPT_POST, 1);  
  12. curl_setopt($ch, CURLOPT_POSTFIELDS, 
    $curlPost);$data = curl_exec();  
  13. curl_close($ch);  
  14. ?﹥ 

From the above procedure, we can see that using CURLOPT_POST to set the POST method of the HTTP protocol, instead of the GET method, and then setting the POST data with CURLOPT_POSTFIELDS.

About proxy servers

The following is an example of how to use the proxy server. Pay attention to the highlighted Code. The Code is very simple and I don't need to talk about it.

 
 
  1. ﹤ ?php $ch = curl_init();  
  2. curl_setopt($ch, CURLOPT_URL, 
    'http://www.example.com');  
  3. curl_setopt($ch, CURLOPT_HEADER, 1);  
  4. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);  
  5. curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, 1);  
  6. curl_setopt($ch, CURLOPT_PROXY, 
    'fakeproxy.com:1080');  
  7. curl_setopt($ch, CURLOPT_PROXYUSERPWD, 
    'user:password');  
  8. $data = curl_exec();  
  9. curl_close($ch);  
  10. ?﹥  

For more information, see the related PHP cURL manual.
 


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.