2010-11-25 18:33:32 -05:00
|
|
|
<?php
|
|
|
|
|
2010-12-10 23:21:34 -05:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* File: testargs.php
|
|
|
|
*
|
|
|
|
* Purpose:
|
|
|
|
* During installation we need to check if register_argc_argv is
|
|
|
|
* enabled for the command line PHP processor, because otherwise
|
|
|
|
* deliveries will fail. So we will do a shell exec of php and
|
2015-01-01 18:01:17 -05:00
|
|
|
* execute this file with a command line argument, and see if it
|
|
|
|
* echoes the argument back to us. Otherwise notify the person
|
2010-12-10 23:21:34 -05:00
|
|
|
* that their installation doesn't meet the system requirements.
|
|
|
|
*
|
2015-01-01 18:01:17 -05:00
|
|
|
*/
|
|
|
|
|
2010-12-10 23:21:34 -05:00
|
|
|
|
2015-01-04 07:24:16 -05:00
|
|
|
if(($_SERVER["argc"] > 1) && isset($_SERVER["argv"][1]))
|
2015-01-01 18:01:17 -05:00
|
|
|
echo $_SERVER["argv"][1];
|
2010-11-25 18:33:32 -05:00
|
|
|
else
|
|
|
|
echo '';
|