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.
这是实际上我想在 Linux 服务器中使用 PHP 运行的命令。 shell_exec(" zip -r abc.doc xyz.doc > foo.zip ");
shell_exec(" zip -r abc.doc xyz.doc > foo.zip ");
使用这个命令我脚本创建损坏的 zip 文件,所以任何人都可以帮助我使它正确。
语法不正确。尝试
zip foo abc.doc xyz.doc
或者
zip -r foo abc.dox xyz.doc
取决于您是否打算替换现有存档。查看man zip更多。
man zip