本文介绍了在php中将文件归档到.7z的命令行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我必须使用一些命令行将filein存档到php中的7zip(.7z)。
i在PHP脚本中添加了命令行作为
exec(7za a test.7z /var/www/html/test.php );
这不是创建test.7z文件。
任何这样的命令行都可以在php上运行吗?
任何人都可以帮助我
提前感谢
i have to use some command line to archive the filein to 7zip(.7z) in php.
i have added the command line in php script as
exec(7za a test.7z /var/www/html/test.php);
this is not creating a test.7z file.
any commandline like this will work in php?
can anyone can help me
thanks in advance
推荐答案
这篇关于在php中将文件归档到.7z的命令行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!