我正在尝试返回一个进程ID抛出一个php。
在Linux中,此命令返回进程ID
/receive.sh url = http://www.site.com cert = certs / test_lv.p12?test_lv> / dev / null 2> / dev / null&
我需要运行此命令抛出一个php。
$response2 = shell_exec("./receive.sh url=https://www.site.com cert=certs/test.p12?test_lv > /dev/null 2>/dev/null &");
echo $response2;
它返回一个空字符串。 谢谢你的回答!
*更新 我添加了一个输出PID,它的工作原理!谢谢大家!
./receive.sh url=https://www.site.com cert=certs/test_lv.p12?test_lv > /dev/null 2>/dev/null & echo $!