1

我刚刚开始使用 Google API for Custom Search Engine,并且成功地完成了我的第一个请求,如下所示:

My_first_Search.php

 require_once 'apis/apiClient.php';
 require_once 'apis/contrib/apiCustomsearchService.php';
 session_start();

 $client = new apiClient();
 $client->setApplicationName('Google CustomSearch PHP Starter Application');
 // Docs: http://code.google.com/apis/customsearch/v1/using_rest.html
 // My developer key (simple api key).
 $client->setDeveloperKey('***********************************');
 $search = new apiCustomsearchService($client);


  // executing a search with your custom search id.
  $result = $search->cse->listCse('burrito', array(
  'cx' => '123456789123546789:*******', // The custom search engine ID to scope this search query.
  ));
 print "<pre>" . print_r($result, true) . "</pre>";

 // executing a search with the URL of a linked custom search engine.
 $result = $search->cse->listCse('burrito', array(
 'cref' => 'http://www.google.com/cse/samples/vegetarian.xml',
  ));
 print "<pre>" . print_r($result, true) . "</pre>";

输出: 此文件burrito以 JSON 格式正确输出关键字的结果

如何淡化然后使用 for-each 循环操纵结果以获得:

  - Result title
  - Result description
  - URL

单击此处查看要操作的 JSON 输出

任何帮助将不胜感激。

4

1 回答 1

1

你的“这个文件”没有输出 json。JSON 是 JS 中变量赋值的文本表示。例如 的右侧var x = ...json here...。该转储是一个 PHP 数据结构,它是通过解码 json 字符串生成的。

换句话说,不要纠结于您正在获取 JSON 的事实——一旦它被解码,它就只是另一个 PHP 数组,您可以使用普通的 PHP 数组操作和索引来获取您的数据。

例如

$arr['queries']['nextPage'][0]['title'] // Google Custom Search - burrito
于 2012-08-13T01:16:09.943 回答