我使用并行 PHP 库,但我不知道如何将脚本的变量传递给并行线程。我在文档中查看我必须在“运行”函数中传递一个数组参数,但我不知道如何访问参数值。
我的脚本:
<?php
$runtime = new \parallel\Runtime();
$future1 = $runtime->run(function(){
echo argv
},array(22,'hi')); // here the argv but how to access in this in $future1 ?
?>
关于并行运行功能的文档链接:https ://www.php.net/manual/en/parallel-runtime.run.php
谢谢。