I’m pretty sure you’re referring to https://github.com/cztomczak/phpdesktop
I think it is not totally independent, requires either Chrome or embedded Internet Explorer:
How to create your first application
- Download the PHP Desktop (Chrome or Internet Explorer)
- Create a folder called
meuaplicativo
Extract the contents of PHP Desktop inside this folder, it should look like this:
Open the phpdesktop-chrome.exe
or phpdesktop-msie.exe
(depends on the version you installed), will open a screen like this:
To disable the console screen you need to locate the settings.json
and change the show_console
for false
:
"debugging": {
"show_console": false,
"subprocess_show_console": false,
"log_level": "DEBUG4",
"log_file": "debug.log"
}
To change the application change the files inside the folder www
.
How it works:
It incorporates all the services your application may need before running. The main elements are the web server (Mongoose), PHP and the Sqlite database. It incorporates a browser (actually Chrome or Internet Explorer):
Note: I also found this https://sourceforge.net/projects/html5phpdesktop/, i don’t know if they are the same thing, but the first link is more updated.
It’s just a kick but it would be the gtk?
– rray
First thing I thought when reading the title @rray http://gtk.php.net/
– user28062
It’s not GTK. It’s something like opening an HTML application in Chrome with the APP parameter and with a web server and php already built in.
– Everton da Rosa