home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Professionell 2005 June
/
PCpro_2005_06.ISO
/
files
/
opensource
/
xamp
/
xampp-win32.exe
/
xampp
/
win.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
|
208 b
|
10 lines
<?php
require_once 'Log.php';
$conf = array('title' => 'Sample Log Output');
$logger = &Log::singleton('win', 'LogWindow', 'ident', $conf);
for ($i = 0; $i < 10; $i++) {
$logger->log("Log entry $i");
}