我正在尝试运行一个运行PowerShell脚本的简单PHP, 如果我使用这段代码,我会在命令窗口中得到结果,但我在浏览器中得到一个空数组:
<?php
exec("powershell C:\\Inetpub\\wwwroot\\my_shell.ps1 < NUL", $output);
echo "<pre>";
print_r($output);
echo "</pre>";
?>
我相信NUL会丢弃输出,但是它可以在浏览器中找到它[这个Fourm] [1]
如果我使用此代码,没有 NUL ,我将在命令窗口中获得结果,但如果我在浏览器中运行脚本将继续加载,它永远不会给我任何结果:
exec("powershell C:\\Inetpub\\wwwroot\\emsrDev\\manual_shell.ps1", $output);
如果我这样做,结果相同:
$output = shell_exec("powershell C:\\Inetpub\\wwwroot\\emsrDev\\manual_shell.ps1");
如果我独立运行powershell脚本运行正常:
$cmd = "cmd.exe";
&$cmd "/C echo update tasks set last='manual' where id='8'; | sqlplus vvv/www@xxx";
所以我需要在浏览器中执行此操作并获取输出。
答案 0 :(得分:1)
powershell进程未终止,导致浏览器挂起。将以下内容添加到脚本的末尾
Stop-Process -processname powershell*