home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Professionell 2005 June
/
PCpro_2005_06.ISO
/
files
/
opensource
/
xamp
/
xampp-win32.exe
/
xampp
/
composite.php
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
PHP Script
|
2004-10-01
|
305 b
|
13 lines
<?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.');