PHP method for accessing GoogleSearchAPI _ PHP Tutorial

Source: Internet
Author: User
Tags elastic search
PHP method for accessing GoogleSearchAPI. PHP access to GoogleSearchAPI this article mainly introduces PHP access to GoogleSearchAPI. The example analyzes php's skills for accessing Google API, which has some reference value, how to access the Google Search API using PHP

This article mainly introduces the PHP method for accessing the Google Search API. The example analyzes php's skills for accessing Google API, which has some reference value. if you need it, you can refer to it.

This example describes how PHP accesses the Google Search API. Share it with you for your reference. The details are as follows:

This code snippet demonstrates how to send requests from php to the AJAX search API. Note that this example assumes that PHP 5.2 is used. For PHP installed earlier, refer to the official notes.

The code is as follows:

The code is as follows:

$ Url = "http://ajax.googleapis.com/ajax/services/search/web? V = 1.0 & q = Paris % 20 Hilton ";

// SendRequest
// Note how referer is set manually
$ Ch = curl_init ();
Curl_setopt ($ ch, CURLOPT_URL, $ url );
Curl_setopt ($ ch, CURLOPT_RETURNTRANSFER, 1 );
Curl_setopt ($ ch, CURLOPT_REFERER, "http://www.mysite.com/index.html ");
$ Body = curl_exec ($ ch );
Curl_close ($ ch );

// Now, process the JSON string
$ Json = json_decode ($ body );
// Now have some fun with the results...

I hope this article will help you with php programming.

The method of using the Elastic Search API this article mainly introduces PHP to access the Google Search API. The example analyzes php's skills for accessing Google API, which has some reference value...

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.