How to pack a PHP \ script application?

I have a script that uses php and curl to automatically log in to the site and performs some actions. This bit is fine, but now I want to send the script to other people so that they can use it.

So, I can create a batch file that executes the script.

The problem will be that users will not have php installed on their computer and you may have to include curl in the php.ini file.

To ask the user to complete all these actions will be random. In any case, could I create a basic setup or something like that to pack it all up?

Thanks for any answers :-)

+4
source share
3 answers

There phc is an open source PHP compiler .

On the other hand, are you sure that your users will have a curl? And if not, and you decide to distribute it with your application, will they have all the curls installed?

+1
source
0
source

It may be overdoing it, but you can take a look at Titanium Desktop http://www.appcelerator.com/products/titanium-desktop-application-development/

Its open source, Cross Plataform and free. This basically allows you to create desktop applications with web application technologies (like Adobe Air) and supports php scripts. Of course, this means that you need to create a user interface, at least to run the script.

0
source

All Articles