PHPの PHP files are scripts which are interpreted by php interpreter (php.exe in windows). PHPのスクリプトファイルは解釈さはPHPインタプリタ( php.exeとしてWindowsの場合) 。 Converting them to exe files makes it easy to distribute PHP applications to Windows users. exeファイルに変換して配布を容易にするPHPアプリケーションをWindowsユーザです。 Unfortunately Zend, the PHP company, doesn’t provide a way to convert PHP scripts to Windows executables.残念ながらzend 、 PHPの会社ではありませんに変換する方法を提供するPHPスクリプトをWindowsの実行可能ファイルです。 Today I am going to show you a simple way to convert your PHP scripts to regular Windows executable files (.exe).今日の私は行くを表示するに簡単に変換してPHPスクリプトを定期的にWindowsの実行可能ファイル( 。 exe )にします。 Not only that you can also convert an entire directory of PHP scripts and assign one of the files as the main file to execute first.それだけでは全体のディレクトリに変換することもPHPのスクリプトと1つのファイルを割り当てるとしての主なファイルを実行する最初のです。 Additionally the source files are encoded which not only improves the performance but also protects your source code.また、ソースファイルには、エンコードのパフォーマンスを向上させるだけでなく、ソースコードだけでなく、保護しています。 You can also set the icon for the file which is useful when you are distributing your PHP application as a stand-alone executable.することもできますが、ファイルのアイコンを設定するには有用なときにはPHPアプリケーションとして配布して、スタンドアロンの実行可能です。

bambalam -P HPをエグゼコンバータ Bambalam bambalam PHP EXE Compiler / Embedder is a free command line tool to convert PHP applications to standalone Windows .exe applications. PHPのエグゼコンパイラ/埋め込みは無料のコマンドラインツールに変換するPHPアプリケーションをスタンドアロンのWindowsの。 exeアプリケーションに最適です。 The exe files produced are totally standalone with no need for php dlls etc. The php code is encoded using the Turck MMCache Encode library.生産は完全にスタンドアロンのexeファイルがない等の必要性をPHPのDLLのエンコードは、 PHPコードは、エンコードライブラリを使用して、テュルクmmcacheです。 It’sa perfect solution if you want to distribute your application to Windows users while protecting your source code at the same time.これは完璧な解決策を配布する場合は、お客様のアプリケーションをWindowsユーザーを保護してソースコードは、同じ時間です。 The converter is also suitable for producing .exe files for windowed PHP applications (created using, for example, the WinBinder library).生産は、コンバータにも適しています。 exeファイルをウィンドウPHPアプリケーション(作成を使用して、たとえば、ライブラリのwinbinder ) 。 It’s also good for making stand-alone PHP Socket servers/clients (using the php_sockets.dll extension).それを作るのもいいスタンドアロンPHPのソケットサーバ/クライアント(拡張子を使用して、 php_sockets.dll ) 。

It’s NOT really a compiler in the sense that it doesn’t produce native machine code from PHP sources, but it works!それは実際に意識していることをコンパイラは、ネイティブなマシンコード生成されませんPHPのソースから、それ作品! Currently, the converter uses a PHP runtime based on PHP 4.4.4.現在のところ、 PHPのランタイムに基づいてコンバータでは、 PHPの4.4.4 。

The tool is free and open source.このツールは無料で、オープンソースです。

Usage:利用方法:
bamcompile [-options] infile.php [outfile.exe] bamcompile [ -オプション] infile.php [ outfile.exe ]
bamcompile [-options] project_directory mainfile.php [outfile.exe] bamcompile [ -オプション] project_directory mainfile.phpに[ outfile.exe ]
bamcompile projectfile.bcp bamcompile projectfile.bcp

Options:オプション:
-w Hide console window for windowed applications -ワットのウィンドウアプリケーションコンソールウィンドウを非表示
-c Compress output exe (using UPX) - c圧縮出力エグゼ(使用してUPXが)
-d Do not encode PHP files次元PHPファイルのエンコードはありません
-e:extension.dll Embed and use PHP extensionメール: extension.dllの埋め込みとPHP拡張モジュールを使用
-i:icon.ico Add icon to exe -私: icon.icoカートのアイコンをエグゼ

You can download itダウンロードしてすることができます。 hereここで .です。