Example #1
0
</pre>
</div>

    <pre class="code" data-language="php">
<?php 
echo '// get a cell content' . "\n";
echo '$table->getCell(2,2)' . "\n";
var_export($table->getCell(2, 2));
echo "\n";
echo '// get a line content' . "\n";
echo '$table->getLine(1)' . "\n";
var_export($table->getLine(1));
echo "\n";
echo '// get a column content' . "\n";
echo '$table->getColumn(2)' . "\n";
var_export($table->getColumn(2));
echo "\n";
echo '// get an iterator over table body' . "\n";
echo '$table->getTableIterator()' . "\n";
var_export($table->getTableIterator());
echo "\n";
echo '// get an iterator over the whole table, sorted by columns' . "\n";
echo '$table->getTableIterator(null, Library\\Tool\\Table::ITERATE_ON_COLUMNS)' . "\n";
var_export($table->getTableIterator(null, Library\Tool\Table::ITERATE_ON_COLUMNS));
?>
</pre>

<h3 id="config">Library\StaticConfiguration\Config</h3>

    <p>The <var>StaticConfiguration\Config</var> class defines a global fully static configuration manager.</p>