utilities functions for command line
Located in /utils/jCmdUtils.class.php (line 18)
analyze command line parameters and return an array of all options and parameters which correspond to allowed options and parameters
allowed options should be an array like this : array('-option1'=>bool, '-option2'=>bool, ..) the boolean indicates that the option has a parameter on the CLI
allowed parameters is an array like this: array('param1'=>bool, 'param2'=>bool, ..) it means that the first parameter value will be in the param1, the second in param2 etc.. The boolean says that the parameter is optional. If a parameter is optional, following parameters should be optional.
the returned array contains two array : array('-option1'=>value, '-option2'=>value, ...) array('param1'=>value, 'param2'=>value...)
Documentation generated on Thu, 19 Sep 2013 00:02:36 +0200 by phpDocumentor 1.4.3