大家好我想做的是
shell_exec("command"); #this works shell_exec("ls > outfile"); #the directing to file does not work`
[my使用自己的命令而不是ls]:ls > outfile所以我先试着用ls来运行它,看看它是否能正常工作,但它不能。它可以在命令行上运行,但php不能,即在浏览器中屏幕变成空白。我已经确保目录具有所有权限。
ls > outfile
ls
bzzcjhmw1#
试试这个:
shell_exec("powershell.exe -command "& { ls > outfile }");
1条答案
按热度按时间bzzcjhmw1#
试试这个: