X7ROOT File Manager
Current Path:
/opt/alt/php53/usr/share/doc/pear/ConsoleTools/docs
opt
/
alt
/
php53
/
usr
/
share
/
doc
/
pear
/
ConsoleTools
/
docs
/
ðŸ“
..
📄
CREDITS
(229 B)
📄
LICENSE
(1.53 KB)
📄
example_input.php
(2.64 KB)
📄
example_menu_dialog_full.php
(624 B)
📄
example_output.php
(2.06 KB)
📄
example_progressbar.php
(3.36 KB)
📄
example_progressmonitor.php
(1.07 KB)
📄
example_question_dialog_collection_full.php
(613 B)
📄
example_question_dialog_factory_yesno.php
(461 B)
📄
example_question_dialog_type_full.php
(630 B)
📄
example_statusbar.php
(987 B)
📄
example_table.php
(2.09 KB)
📄
example_table_2.php
(1.71 KB)
ðŸ“
img
📄
tutorial.txt
(23.92 KB)
📄
tutorial_autoload.php
(495 B)
📄
tutorial_example_01_output_basic.php
(184 B)
📄
tutorial_example_02_output_advanced.php
(657 B)
📄
tutorial_example_03_output_options.php
(755 B)
📄
tutorial_example_04_input_basic.php
(399 B)
📄
tutorial_example_05_input_advanced.php
(1.11 KB)
📄
tutorial_example_06_progressbar_basic.php
(271 B)
📄
tutorial_example_07_progressbar_advanced.php
(596 B)
📄
tutorial_example_08_statusbar.php
(656 B)
📄
tutorial_example_09_table_basic.php
(1.06 KB)
📄
tutorial_example_10_table_advanced.php
(1 KB)
📄
tutorial_example_11_progressmonitor.php
(299 B)
📄
tutorial_example_12_input_arguments.php
(1.41 KB)
📄
tutorial_example_13_dialog_question.php
(552 B)
📄
tutorial_example_14_dialog_yesnoquestion.php
(334 B)
📄
tutorial_example_15_dialog_menu.php
(739 B)
📄
tutorial_example_output_targets.php
(308 B)
Editing: example_input.php
<?php /** * Example for the usage of ezcConsoleParameter class. * * @package ConsoleTools * @version 1.6.1 * @copyright Copyright (C) 2005-2010 eZ Systems AS. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ require_once 'Base/src/base.php'; /** * Autoload ezc classes * * @param string $className */ function __autoload( $className ) { ezcBase::autoload( $className ); } $optionHandler = new ezcConsoleInput(); // Register simple parameter -h/--help $optionHandler->registerOption( new ezcConsoleOption( 'h', 'help' ) ); // Register complex parameter -f/--file $file = new ezcConsoleOption( 'f', 'file', ezcConsoleInput::TYPE_STRING, null, false, 'Process a file.', 'Processes a single file.' ); $optionHandler->registerOption( $file ); // Manipulate parameter -f/--file after registration $file->multiple = true; // Register another complex parameter that depends on -f and excludes -h $dir = new ezcConsoleOption( 'd', 'dir', ezcConsoleInput::TYPE_STRING, null, true, 'Process a directory.', 'Processes a complete directory.', array( new ezcConsoleOptionRule( $optionHandler->getOption( 'f' ) ) ), array( new ezcConsoleOptionRule( $optionHandler->getOption( 'h' ) ) ) ); $optionHandler->registerOption( $dir ); // Register an alias for this parameter $optionHandler->registerAlias( 'e', 'extended-dir', $dir ); // Process registered parameters and handle errors try { $optionHandler->process( array( 'example_input.php', '-h' ) ); } catch ( ezcConsoleOptionException $e ) { echo $e->getMessage(); exit( 1 ); } // Process a single parameter $file = $optionHandler->getOption( 'f' ); if ( $file->value === false ) { echo "Parameter -{$file->short}/--{$file->long} was not submitted.\n"; } elseif ( $file->value === true ) { echo "Parameter -{$file->short}/--{$file->long} was submitted without value.\n"; } else { echo "Parameter -{$file->short}/--{$file->long} was submitted with value <".var_export($file->value, true).">.\n"; } // Process all parameters at once: foreach ( $optionHandler->getOptionValues() as $paramShort => $val ) { switch ( true ) { case $val === false: echo "Parameter $paramShort was not submitted.\n"; break; case $val === true: echo "Parameter $paramShort was submitted without a value.\n"; break; case is_array( $val ): echo "Parameter $paramShort was submitted multiple times with value: <".implode(', ', $val).">.\n"; break; default: echo "Parameter $paramShort was submitted with value: <$val>.\n"; break; } } ?>
Upload File
Create Folder