0

我想用“ php_exec ”执行一次 2 shell 命令,但它不适用于我。

我想做的是,我通过执行 php_exec 进入第一个界面,然后用 php_exec 执行另一个 shell 命令。在我看来它没有成功,我认为只有第一个 php_exec 不会执行第二个。

作为示例,我们使用“wget”下载带有 php_exec 的 zip 文件,然后使用 php_exec 解压缩文件。

谢谢你的帮助 !

4

1 回答 1

0

PHP isn't waiting for the shell commands to complete before moving on. You should combine your two shell commands into one.

exec('wget http://www/file.zip && unzip file.zip');
于 2012-04-24T17:07:25.223 回答