从PHP执行时PhantomJS无法渲染

时间:2013-04-19 16:36:09

标签: php javascript phantomjs

phantomjs的新手决定使用它来打印网页截图。从终端一切正常,但是当使用shell_exec函数从PHP脚本执行时,渲染不起作用。

这只是从PHP执行幻像的部分。使用shell_exec执行的其他命令工作,而不是渲染。

$output = shell_exec("phantomjs phantom.js");
echo $output;

这是在shell上执行时可以正常工作的幻像脚本

var page = require('webpage').create();
page.open( "http://www.google.co.uk" , function(s){
    var title = page.evaluate(function(){
        var main = document.getElementsByTagName("center");
        main[0].style.visibility = "hidden";
        return document.title;
    });
    console.log("rendering now");
    page.render("title" + ".png");
phantom.exit();
});

1 个答案:

答案 0 :(得分:2)

这可能会产生更可预测的结果 -

出于测试目的,只需使用:

 exec("phantomjs phantom.js");

确保您在执行php脚本的相同文件夹中可以执行phantomj。

其次,丢失$ output变量。我尝试了类似于你尝试过的东西而且它不会工作 - 你的幻像脚本不会返回当前状态的任何东西,而且shell_exec正在因其不可预测和不安全的性质而被弃用。恕我直言shell_exec充其量是hackish和临时。

第三,为了测试,将你的文件夹CHMOD改为“777”。或者将页面渲染的输出保存到具有写权限的文件夹中。

从PhantomJs脚本到PHP脚本返回可用数据(读取:可用于多个并发用户,因为这是一个缓慢的阻塞操作)......好吧......这就是挑战... < / p>