Submit
Path:
~
/
/
opt
/
cloudlinux
/
alt-php53
/
root
/
usr
/
share
/
doc
/
pear
/
ConsoleTools
/
docs
/
File Content:
example_table_2.php
<?php /** * Example for the usage of ezcConsoleTable 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 ); } // Initialize the console output handler $out = new ezcConsoleOutput(); // Define format schemes for even and odd rows $out->formats->evenRow->color = 'red'; $out->formats->evenRow->style = array( 'bold' ); $out->formats->oddRow->color = 'blue'; $out->formats->oddRow->style = array( 'bold' ); // Define format schemes for even and odd cells $out->formats->evenCell->color = 'red'; $out->formats->evenCell->style = array( 'negative' ); $out->formats->oddCell->color = 'blue'; $out->formats->oddCell->style = array( 'negative' ); // Create a new table with a width of 60 chars $table = new ezcConsoleTable( $out, 60 ); // Set global cell content align $table->options->defaultAlign = ezcConsoleTable::ALIGN_CENTER; for ( $i = 0; $i < 5; $i ++ ) { for ( $j = 0; $j < 5; $j++ ) { // Fill each table cell with ## $table[$i][$j]->content = '##'; if ( $i === $j ) { // On diagonal line set explicit cell format for even/odd $table[$i][$j]->format = $j % 2 == 0 ? 'evenCell' : 'oddCell'; } } // Set global format for even/odd rows $table[$i]->format = $i % 2 == 0 ? 'evenRow' : 'oddRow'; // Set border format for even/odd rows $table[$i]->borderFormat = $i % 2 == 0 ? 'evenRow' : 'oddRow'; } $table->outputTable(); echo "\n"; ?>
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
img
---
0755
CREDITS
229 bytes
0644
LICENSE
1570 bytes
0644
example_input.php
2705 bytes
0644
example_menu_dialog_full.php
624 bytes
0644
example_output.php
2107 bytes
0644
example_progressbar.php
3442 bytes
0644
example_progressmonitor.php
1099 bytes
0644
example_question_dialog_collection_full.php
613 bytes
0644
example_question_dialog_factory_yesno.php
461 bytes
0644
example_question_dialog_type_full.php
630 bytes
0644
example_statusbar.php
987 bytes
0644
example_table.php
2142 bytes
0644
example_table_2.php
1746 bytes
0644
tutorial.txt
24492 bytes
0644
tutorial_autoload.php
495 bytes
0644
tutorial_example_01_output_basic.php
184 bytes
0644
tutorial_example_02_output_advanced.php
657 bytes
0644
tutorial_example_03_output_options.php
755 bytes
0644
tutorial_example_04_input_basic.php
399 bytes
0644
tutorial_example_05_input_advanced.php
1133 bytes
0644
tutorial_example_06_progressbar_basic.php
271 bytes
0644
tutorial_example_07_progressbar_advanced.php
596 bytes
0644
tutorial_example_08_statusbar.php
656 bytes
0644
tutorial_example_09_table_basic.php
1088 bytes
0644
tutorial_example_10_table_advanced.php
1024 bytes
0644
tutorial_example_11_progressmonitor.php
299 bytes
0644
tutorial_example_12_input_arguments.php
1442 bytes
0644
tutorial_example_13_dialog_question.php
552 bytes
0644
tutorial_example_14_dialog_yesnoquestion.php
334 bytes
0644
tutorial_example_15_dialog_menu.php
739 bytes
0644
tutorial_example_output_targets.php
308 bytes
0644
N4ST4R_ID | Naxtarrr