[ Index ] |
|
Code source de dotProject 2.1 RC1 |
1 <?php 2 $debug_file = "{$dPconfig['root_dir']}/files/debug.log"; 3 4 function writeDebug( $s, $t='', $f='?', $l='?' ) { 5 GLOBAL $debug, $debug_file; 6 if ( $debug && ($fp = fopen( $debug_file, "at" ))) { 7 fputs( $fp, "Debug message from file [$f], line [$l], at: ".strftime( "%H:%S" ) ); 8 if ($t) { 9 fputs( $fp, "\n * * $t * *\n" ); 10 } 11 fputs( $fp, "\n$s\n\n" ); 12 fclose( $fp ); 13 } 14 } 15 ?>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Sun Feb 18 19:46:52 2007 | par Balluche grâce à PHPXref 0.7 |