I'm interested in running a PHP web application using Quercus in a way similar to:
java -classpath ... com.example.LaunchPHP {php folder}
All the documentation I could find on Quercus was related to running from Resin, but this is something I want as simple as possible, for running from a CI build.
What possibilities are there?
Digging through the
QuercusServlet
source, it appears that you would need to callQuercus.parse
to get aQuercusPage
on which you could callexecute
. I suspect there's some more setup you'd have to do first (like initializing php.ini values), but I think reading through theQuercusServlet
source should send you in the right direction.