I'm trying to understand the HipHop documentation, but it's not very clear. I have a PHP script I want to compile into an executable with HipHop.
How do I pass arguments to this PHP executable by command line? And how is this received by the PHP script ($_GET['arg']?)
I want to do something like this: my_compiled_script --variablename="This is the value"
Which is then received by the script as: $_GET['variablename']
So how does that work?