| [ Index ] |
|
Code source de CMS made simple 1.0.5 |
1 <?php 2 3 class XLogger 4 { 5 var $instanceName ; 6 var $handle ; 7 8 function XLogger( $instanceName ) 9 { 10 $this->InstanceName = $instanceName ; 11 $this->handle = @fopen($instanceName.".txt", "w+") ; 12 } 13 14 15 function log($txt){ 16 @fwrite($this->handle, $txt."\n"); 17 } 18 19 function close() { 20 @fclose($this->handle); 21 } 22 23 } 24 25 ?>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
| Généré le : Tue Apr 3 18:50:37 2007 | par Balluche grâce à PHPXref 0.7 |