Your IP : 216.73.216.74


Current Path : /usr/local/php5.6/lib/php/doc/Log/examples/
Upload File :
Current File : //usr/local/php5.6/lib/php/doc/Log/examples/composite.php

<?php

require_once 'Log.php';

$console = &Log::singleton('console', '', 'TEST');
$file = &Log::singleton('file', 'out.log', 'TEST');

$composite = &Log::singleton('composite');
$composite->addChild($console);
$composite->addChild($file);

$composite->log('This event will be logged to both handlers.');