我试图在4线程/进程中运行我的phantomjs脚本。我们的想法是使用不同的参数异步运行它。 所以我正在做一些事情(在一个循环中):
$arguments = array('argument1', 'argument2', 'argument3');
foreach($arguments as $argument){
system('phantomjs my_script.js ' . $argument . ' > output_for_' . $argument . ' 2> errors_for_' . $argument . ' &');
}
phantomjs实例会异步工作吗?或者不是?
编辑: 顺便说一句,我知道这是非阻塞系统调用,并且php脚本继续执行 - 但我不确定php system()调用的每个phantomjs实例是否与另一个phantomjs实例异步。
答案 0 :(得分:0)
不,system()
本身并不会产生新的进程或线程。