00001 <?php 00002 include '../utilities/stringproc.php'; 00003 $tStr = '^1Hi^JBob^Ltit^6g'; 00004 $strproc =& LFSStringProc::singleton(); 00005 $s=microtime(true); 00006 for($i=0;$i<10000;$i++) 00007 $strproc->process($tStr); 00008 $e = microtime(true); 00009 echo ($e-$s); 00010 ?>