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 Desktop将我的网络应用程序变成“桌面应用程序”。是否有可能,如果可以,在执行主 .exe 文件后如何执行多个 .bat 或 .exe 文件?也可以使用 JavaScript 执行带有按钮的 .bat 或 .exe 文件吗?
您可以使用诸如 system() 之类的 PHP 函数来执行任何命令。
还有一个“nircmd”工具,它有许多选项,包括异步执行程序的选项。看:
https://github.com/cztomczak/phpdesktop/wiki/Knowledge-Base#how-do-i-call-external-programs-or-commands-asynchronously-in-background-without-waiting-for-them-to-结尾
如果你想用 js 执行程序,那么只需对 PHP 脚本进行 AJAX 调用。