Convert a PHP script into a stand-alone windows executable

后端 未结 7 993
你的背包
你的背包 2020-11-22 14:29

I want to automate a fairly simple task. For this I have written a small PHP script which I run from the command line using PHP-CLI. Now I want to hand over this script to s

7条回答
  •  独厮守ぢ
    2020-11-22 15:24

    RapidEXE is exactly for this job:

    • SoftPedia page
    • Author's original page

    It converts a php project to a standalone exe. I had enough of all other compilers, tried them one by one and they all disappointed me one way or another. Be my guest, feedbacks are always welcome!

    Side note: the mechanism behind it is quite similar to the WinRAR SFX approach; extract engine, extract source, then run. It's just faster and easier to work with. One-command compilation, compressed, smart unpack, auto cleanup, easy config, full control of php engine & version; also extensible with minimal effort.

    Happy developing!

提交回复
热议问题