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.
我正在尝试通过 php 在 Windows 中进行一些修改,例如:
你能告诉我控制 Windows 的可用命令是什么吗?
shell_exec和相关的功能是你正在寻找的。
shell_exec
<?php exec('c:\WINDOWS\system32\cmd.exe'); ?>
http://php.net/manual/en/function.exec.php
如果您的字符串用双引号 (") 括起来,请记住转义斜杠。