Standalone PHP Apps in Windows
November 3, 2010 at 8:56 pm | PHP, Windows | No comment
If you want to make simple standalone command-line apps in Windows using PHP, go download the Bambalam PHP EXE Compiler/Embedder. It can’t get much simpler.
Write your code, run compile.bat, and Bambalam! you’ve got you app.
For using command-line parameters, check out these variables:
$_SERVER['argc']; // number of arguments $_SERVER['argv']; // array of arguments
