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 脚本中播放宏:
exec('firefox http://run.imacros.net/?m=my_macro.iim');
现在我想通过使用脚本界面来改进我的程序。我已经阅读了我需要 COM 类的文档,该类在 Linux 版本的 PHP 上不可用。那么您知道如何使用 PHP 来运行我的脚本吗?实际上,我不希望每次启动脚本时都显示 Firefox,所以我真正想要的是一种“隐藏”它的方法。
谢谢。