我正在一个受控的,仅限xp,仅限Intranet的环境中运行,我需要从PHP应用程序启动外部进程.(备份,报告等)
我可以让系统或exec启动静默工作的进程.这是一个简单的例子
<?php exec ("echo hello > hello.txt");?>
Run Code Online (Sandbox Code Playgroud)
我可以让它执行一个没有可见输出的bat文件.
我无法获得任何具有运行屏幕的程序,例如报告生成器或记事本......
<?php exec ("explorer");?>
Run Code Online (Sandbox Code Playgroud)
什么都不做 或系统相同