我正在尝试分析来自维基数据API的数据,但在运行var_dump函数时我一直在超时。请参阅下面的代码:
<html>
<body>
<h2>Search</h2>
<form method="post">
Search: <input type="text" name="q" value="Google"/>
<input type="submit" value="Submit">
</form>
<?php
if (isset($_POST['q'])) {
$search = $_POST['q'];
$url_2 = "http://www.wikidata.org/w/api.php?
action=wbgetentities&sites=enwiki&titles=$search&languages=en";
$res_2 = file_get_contents($url_2);
$data_2 = json_decode($res_2);
var_dump($data_2);
}
exit;
?>
</body>
</html>
我点击提交然后获取:致命错误:超过30秒的最大执行时间... 还有其他任何分析数据的建议吗?谢谢。