Convert a PHP script into a stand-alone windows executable

后端 未结 7 814
你的背包
你的背包 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

    My experience in this matter tells me , most of these software work good with small projects .
    But what about big projects? e.g: Zend Framework 2 and some things like that.
    Some of them need browser to run and this is difficult to tell customer "please type http://localhost/" in your browser address bar !!

    I create a simple project to do this : PHPPy

    This is not complete way for create stand alone executable file for running php projects but helps you to do this.
    I couldn't compile python file with PyInstaller or Py2exe to .exe file , hope you can.
    You don't need uniformserver executable files.

提交回复
热议问题