运行程序的网页
大家好,我是 PHP 新手,所以请放心。 :)
我正在尝试制作一个最低限度的网页来在我的计算机上运行各种东西。
例如,我有一个按钮并尝试运行以下命令:
<?php
exec("taskkill /IM iexplore.exe");
?>
但是,什么也没有发生。我在谷歌和这里阅读了很多内容,但我找不到任何可以解释这个问题的内容。我使用的是 Win 7,禁用了 UAC,运行的是最新版本的 WAMP。 (到目前为止我发现的所有内容都涉及 IIS)
有人能给我指出正确的方向吗?
Hi all I'm brand new to PHP so go easy here. :)
I am attempting to make a bare minimum webpage to run various things on my computer.
For example, I have a button and am attempting to run the following:
<?php
exec("taskkill /IM iexplore.exe");
?>
However, nothing happens. I've read a bunch on Google and here, but I can't find anything that explains this problem. I am on Win 7, UAC disabled, running the latest version of WAMP. (Everything I've found so far addresses IIS)
Could some one point me in the right direction?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为您正在寻找的是 shell_exec
您也可以使用这个构建PHP 手册中的函数:
希望这有帮助
I think what you are looking for is shell_exec
You can also use this built in function from the PHP Manual :
Hope this helps
exec() 用于 CLI 模式(本地)。玩你的 bash。
exec() is for CLI mode (locally). Play with your bash.