我正在尝试用PHP读取PhantomJS中的一些输出,但我没有找到如何处理它的技巧。以前有人做过吗?有一些解决方案吗?
var page = require('webpage').create();
page.open('http....', function(status) {
if (status !== 'success') {
console.log('Unable to access network');
} else {
page.evaluate(function() {
var list = document.querySelectorAll('div.resume');
for (var i = 0; i < list.length; i++){
console.log((i + 1) + ":" + list[i].innerText);
}
});
}
phantom.exit();
});
并在php中
$result = shell_exec($cmd...);
print($result);