当我从WAMP上的cmd.exe [命令行]运行此脚本时,我得到:
Could not retrieve data from OpenAmplify.file_get_contents(http://portal
tnx.openamplify.com/AmplifyWeb/AmplifyThis?apiKey=MY_API_KEY_GOES_HERE): failed to open stream: HTTP request failed! (C:\wamp\www\Learning_Query_Pa
th\src\QueryPath\QueryPath.php: 4053)
当我通过firefox浏览器[v 19.0]从localhost运行此脚本时,我得到:
Fatal error: Maximum execution time of 30 seconds exceeded in C:\wamp\www\Learning_Query_Path\src\QueryPath\QueryPath.php on line 4525
这是我使用的脚本:
<?php
require 'src/QueryPath/QueryPath.php';
$url = 'http://portaltnx.openamplify.com/AmplifyWeb/AmplifyThis?';
$key = 'I_PUT_MY_API_KEY_HERE';
$text = 'I_PUT_TEXT_HERE';
$params = array(
'apiKey' => $key,
);
$url .= http_build_query($params);
$options = array(
'http' => array(
'method' => 'POST',
'user_agent' => 'QueryPath/2.0',
'header' => 'Content-type: application/x-www-form-url-encoded',
'content' => http_build_query(array('inputText' => $text)),
),
);
$context = stream_context_create($options);
try {
$qp = qp($url, NULL, array('context' => $context));
}
catch (Exception $e) {
print "Could not retrieve data from OpenAmplify." . $e->getMessage();
exit;
}
$qp->find('ProperNouns>TopicResult>Topic>Name')->slice(0, 20);
$out = qp(QueryPath::HTML_STUB, 'body')->append('<ul/>')->find('ul');
foreach ($qp as $name) {
$out->append('<li>' . $name->text() . '</li>');
}
$out->writeHTML();
?>
我该如何做到这一点?
P.S。 Open Amplify是一个Web服务,它提供所提供的文本,在分析之后,返回很多有趣的东西。我非常热衷于使这个工作和QueryPath的忠实粉丝,所以我只对如何使它与QueryPath一起使用感兴趣!
答案 0 :(得分:0)
答案 1 :(得分:0)
要延长超时,您可以使用'http'选项中的'timeout'名称/值对。例如。把它放在这里:
'content' => ...
'timeout' => 120.0
(参考:http://www.php.net/manual/en/context.http.php)
我的猜测是,其他东西是不对的。您可以使用file_get_contents()
而不是qp()
来获取文件,然后将该字符串传递给QueryPath。至少从那时起,您将调试网络问题,而不是QueryPath。
对于使用OpenAmplify,我也很幸运使用了CURL API,但这比内置的PHP流包装器复杂一点(参考:http://www.php.net/manual/en/book.curl.php)。