PHP How to access the Google Search API _php Tutorial

Source: Internet
Author: User
Tags php programming

How PHP accesses the Google Search API


This article mainly introduces PHP access to the Google Search API method, the example of PHP for Google API access to the skills, with a certain reference value, the need for friends can refer to the following

This example describes how PHP accesses the Google Search API. Share to everyone for your reference. Specific as follows:

This snippet demonstrates how to send a request from PHP to the Ajax search API. Note that this example assumes that PHP 5.2 is used. For earlier installed PHP, please refer to the corresponding official comments.

The specific code is as follows:

The code is as follows:

$url = "Http://ajax.googleapis.com/ajax/services/search/web?v=1.0&q=Paris%20Hilton";

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 has some fun with the results ...

I hope this article is helpful to everyone's PHP programming.

http://www.bkjia.com/PHPjc/963987.html www.bkjia.com true http://www.bkjia.com/PHPjc/963987.html techarticle how PHP accesses the Google search API this article mainly introduces PHP access to the Google search API method, the example of PHP for Google API access to the skills, with a certain reference value, need ...

  • 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.