mirror of
https://github.com/php/presentations.git
synced 2026-03-24 15:42:33 +01:00
18 lines
437 B
PHP
18 lines
437 B
PHP
<pre>
|
|
<?php
|
|
require_once 'ezc/Base/base.php';
|
|
|
|
function __autoload( $className )
|
|
{
|
|
ezcBase::autoload( $className );
|
|
}
|
|
|
|
$cfg = ezcConfigurationManager::getInstance();
|
|
$cfg->init( 'ezcConfigurationIniReader', dirname( __FILE__ ) . '/examples' );
|
|
|
|
echo "Time Index: ", xdebug_time_index(), "\n";
|
|
$pw = $cfg->getSetting( 'settings', 'db', 'password' );
|
|
echo "The password is <$pw>.\n";
|
|
echo "Time Index: ", xdebug_time_index(), "\n";
|
|
?>
|