PHP和JSON查询从Freebase中提取数据

时间:2011-12-24 00:45:32

标签: php json curl freebase mql

我需要为任何给定的电影提取制作公司和发行公司的信息,我正在使用Freebase。发生我从未使用过JSON,也不知道如何将查询与我的PHP文件集成。

我一直在阅读的教程对此并不清楚,所以我总是来这里得到我一直得到的帮助! :)

所以...我需要提取的信息是Freebase Query Editor

我所拥有的PHP就是这样(注释行是我确定错误的行和/或我所遵循的教程中没有成功的行here

$moviename = "The Matrix";

// [{ "name": "The Matrix", "type": "/film/film", "production_companies": [{ "name": null }], "distributors": [{ "distributor": [{ "name": null }] }] }]
$simplequery = array('name'=>$moviename, 'type'=>"/film/film", 'production_companies'=>array('name'=>null));

//{"id":"/topic/en/philip_k_dick", "/film/writer/film":[]}
//$simplequery = array('id'=>$_POST["freebasewriter"], 'name'=>null, '/film/writer/film'=>array(array('name'=>null, 'id'=>null)));

$queryarray = array('q1'=>array('query'=>$simplequery));
$jsonquerystr = json_encode($queryarray);

#run the query
$apiendpoint = "http://sandbox.freebase.com/api/service/mqlread?queries";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "$apiendpoint=$jsonquerystr");
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$jsonresultstr = curl_exec($ch);
curl_close($ch); 

$jsonquerystr = urlencode(json_encode($queryarray) );

//print_r($resultarray);
//$produtoraarray = $resultarray["q1"]["result"]["production_companies"];
//print_r($produtoraarray);
//$produtorarray = $resultarray["q1"]["result"][];
//$freebaseserver = "http://sandbox.freebase.com";

有人可以在这里给我一个帮助吗?提前谢谢!

顺便欣赏它,顺便说一下圣诞快乐:)

修改 @Yanir Shahak回答帮助,现在我得到了这个:

Array ( [code] => /api/status/ok [q1] => Array ( [code] => /api/status/error [messages] => Array ( [0] => Array ( [code] => /api/status/error/mql/result [info] => Array ( [count] => 3 [result] => Array ( [0] => Array ( [name] => Warner Bros. Entertainment ) [1] => Array ( [name] => Village Roadshow Pictures ) [2] => Array ( [name] => Silver Pictures ) ) ) [message] => Unique query may have at most one result. Got 3 [path] => production_companies [query] => Array ( [name] => The Matrix [production_companies] => Array ( [error_inside] => . [name] => ) [type] => /film/film ) ) ) ) [status] => 200 OK [transaction_id] => cache;cache02.sandbox.sjc1:8101;2011-12-24T02:01:34Z;0004 ) 

现在......如何将数据从那里带到我可以使用的数组中?

此代码无效,因为我得到了未定义的索引

//print_r($resultarray);
//$produtoraarray = $resultarray["q1"]["result"]["production_companies"];
//print_r($produtoraarray);
//$produtorarray = $resultarray["q1"]["result"][];
//$freebaseserver = "http://sandbox.freebase.com";

2 个答案:

答案 0 :(得分:5)

您的查询返回错误,因为它遗漏了一些重要的细节。你写过:

$simplequery = array('name'=>$moviename, 
                     'type'=>"/film/film", 
                     'production_companies'=>array('name'=>null));

对应于以下MQL查询:

{
  "name": "The Matrix", 
  "type": "/film/film", 
  "production_companies": {
    "name": null
  }
}

这是失败的,因为通常有不止一部电影具有给定名称,并且也可能涉及多个制作公司。要在MQL中正确处理这些情况,您需要将production_companies属性以及数组中的完整查询包装起来,以指示您希望查询的这些部分有多个结果。在MQL中,如下所示:

[{
  "name": "The Matrix", 
  "type": "/film/film", 
  "production_companies": [{
    "name": null
  }]
}]

并在您的代码中转换为类似的内容:

$notsosimplequery = array(array('name'=>$moviename, 
                                'type'=>"/film/film",
                                'production_companies'=>array(array('name'=>null))));

您还应该考虑使用更快的new MQL Read Service,并且对每天可以进行的查询数量有更高的限制。

答案 1 :(得分:2)

您需要做的就是替换:

$jsonquerystr = json_encode( $queryarray );

使用:

$jsonquerystr = urlencode( json_encode( $queryarray ) );

显然你必须在使用cURL将它们发送到API服务器之前对json字符串中的特殊字符进行编码,因为cURL不会为你做...

当你得到你的结果时,它将采用JSON(JavaScript Object Notation)的形式,这是表示数据(属性和值)的另一种方式,就像XML一样。 您将必须解码json(请注意,当您发送编码JSON的查询时)并将结果用作对象,如下所示:

$data = json_decode( $jsonresultstr );
foreach ( $data->q1->messages[ 0 ]->info->result as $company )
{
    echo( $company->name . "<br/>" );
}