Source for file debug_test_min.php
Documentation is available at debug_test_min.php
1 <?php 2 /** 3 * Mini Tutorial 4 * 5 * @package PHP_Debug 6 * @filesource 7 */ 8 9 /** 10 */ 11 include_once('debug.php'); 12 13 $Dbg = new Debug(); 14 15 print("<h1>PHP_Debug :: Hello World !!</h1>"); 16 17 $Dbg->addDebug("DEBUG INFO",DBGLINE_STD,__FILE__,__LINE__); 18 19 $Dbg->DebugDisplay( (isset($_REQUEST["DBG_SEARCH"]) ? $_REQUEST["DBG_SEARCH"] : "") ); 20 21 ?>
|