[ Index ] |
|
Code source de LifeType 1.2.4 |
1 <?php 2 3 lt_include(PLOG_CLASS_PATH."class/logger/appender/appender.class.php"); 4 5 /** 6 * StdoutAppender logs a message directly to the requesting client. 7 * 8 * \ingroup logger 9 */ 10 class StdoutAppender extends Appender 11 { 12 /** 13 * Create a new FileAppender instance. 14 * 15 * @param Layout A Layout instance. 16 * 17 * @access public 18 * @since 1.0 19 */ 20 function StdoutAppender($layout, $properties) 21 { 22 parent::Appender($layout, $properties); 23 } 24 25 /** 26 * Write a message directly to the client, including the new line. 27 * 28 * @param message The message that we're going to write 29 */ 30 function write ($message) 31 { 32 echo $message . "<br/>\n"; 33 } 34 } 35 36 ?>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Mon Nov 26 21:04:15 2007 | par Balluche grâce à PHPXref 0.7 |
![]() |