前端之家收集整理的这篇文章主要介绍了
CasperJS将数据传回PHP,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
CasperJS由
PHP使用exec()命令
调用.在CasperJS执行其工作之后,如检索网页的一部分,如何将检索的数据返回给
PHP?
您可以将
输出从stdout
重定向到数组.
在this页,它说你可以做:
string exec ( string $command [,array &$output [,int &$return_var ]] )
继续说:
If the output argument is present,then the specified array will be filled with every line of output from the command.
所以基本上你可以执行exec(‘casperjs命令这里,$array_here);
原文链接:https://www.f2er.com/php/131068.html