要执行多条命令,可以将多个命令以分号(;)分隔开来,然后将整个命令作为参数传递给system()函数。
system()
例如,要执行两条命令command1和command2,可以这样写:
command1
command2
$command = 'command1; command2'; system($command);
这样,command1会先执行,然后再执行command2。请注意,system()函数执行的是shell命令,因此确保命令的安全性以避免命令注入攻击。