我可以从命令行的phantom.js请求中获取输出,而输出正是我所期望的。我想从php脚本调用phantom.js,然后解析输出以查找某些内容。
我的phantom.js看起来像:
var page = require('webpage').create();
console.log('The default user agent is ' + page.settings.userAgent);
page.settings.userAgent = 'SpecialAgent';
page.open('https://www.aa.com/travelInformation/flights/status/detail?search=AA|1698|2019,1,23&ref=search', function(status) {
if (status !== 'success') {
console.log('Unable to access network');
} else {
var ua = page.evaluate(function() {
return document.getElementById('aa-content-frame').innerHTML;
});
console.log(ua);
}
phantom.exit();
});
如果我从命令行运行以下命令:
phantomjs phantomjstest.js
我得到的输出类似于:
The default user agent is Mozilla/5.0 (Unknown; Linux x86_64) AppleWebKit/538.1 (KHTML, like Gecko) PhantomJS/2.1.1 Safari/538.1
<app-root-flight-status data="{"queryString":"AA|1698|2019,01,23",
"bffUri":"https://www.aa.com/flightinfo/v1.0/",
"email":"",
"countryCode":"",
"phoneNumber":""}" _nghost-c0="" ng-version="6.1.4"><router-outlet _ngcontent-c0=""></router-outlet><app-flight-details _nghost-c1=""><!----><!----><div _ngcontent-c1=""><!----><h1 _ngcontent-c1=""> Flight status</h1>
... blah blah blah ...
我想做的是从这样的php脚本中运行phantom.js:
$response = exec('/usr/bin/phantomjs phantomjstest.js');
,然后使用解析输出的代码继续php脚本。
当我执行我的php脚本时:
<?php
$response = exec('/usr/bin/phantomjs phantomjstest.js');
$query = mysqli_query($link, "INSERT INTO test (t_test) VALUES('11 - " . $response . "')");
echo "Response = <br /><br />".$response;
?>
似乎$ response为空。它不显示在屏幕上,仅'11-'被添加到数据库中。我认为这是因为phantomjstest.js将“ ua”记录到控制台。
我的问题是如何使javascript变量ua达到可以在我的php脚本中解析的程度。有什么想法吗?
答案 0 :(得分:0)
PHP的exec不返回输出。
它使用命令的输出填充第二个参数,例如:
<?php
$response = [];
exec('/usr/bin/phantomjs phantomjstest.js', $response);
var_dump($response);