Source for file ex5.php
Documentation is available at ex5.php
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
* This file is part of the PEAR Console_CommandLine package.
* A simple example demonstrating the use of choices argument validation.
* @package Console_CommandLine
* @author Laurent Laville <pear@laurent-laville.org>
* @link http://pear.php.net/package/Console_CommandLine
// Include the Console_CommandLine package.
require_once 'Console/CommandLine.php';
$xmlfile = dirname(__FILE__ ) . DIRECTORY_SEPARATOR . 'ex5.xml';
$result = $parser->parse ();
if ($result->command_name ) {
$st = implode(', ', $result->command ->args ['item']);
} catch (Exception $exc) {
$parser->displayError ($exc->getMessage ());
Documentation generated on Thu, 25 Oct 2012 08:00:06 +0000 by phpDocumentor 1.4.3. PEAR Logo Copyright © PHP Group 2004.
|