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.
我写了这个程序:
echo exec('hi.exe '.$file,$results,$status); if ($status === 0) { echo implode('<br/><br/>',$results); }
hi.exe 在同一目录中存在的各个文件中生成所有输出(.exe 文件运行良好),但问题是每当我在浏览器中从本地主机运行此 .exe 文件时,浏览器都会继续加载并且确实如此不显示任何输出。
为什么会这样?为什么浏览器变得这么慢?