Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想同时执行两个命令,我正在使用 if((bool)@$ip) shell_exec("command1; command2");
if((bool)@$ip) shell_exec("command1; command2");
它确实有效,但它需要完成一个命令,然后它将开始执行另一个命令。
请问我可以帮忙吗?谢谢
如果您将 & 符号放在第一个命令的末尾,它将在后台(异步)运行该命令,以便您的 PHP 脚本将继续到下一行,在那里您可以触发下一个命令。