php代码效率测试

PHP代码
$GLOBALS['_start_time_'] = array_sum(explode(' ', microtime()));   
/**  
* 调试使用情况  
*/  
function debug_using()   
{   
echo '执行时间:'.(array_sum(explode(' ', microtime()))-$GLOBALS['_start_time_']).' 秒.<br>';   
if (function_exists('memory_get_usage')) {   
echo '内存使用:'.number_format(memory_get_usage()).' 字节.<br>';   
}   
}  
 

 

PHP代码
debug_using();  

你可能感兴趣的:(php代码效率测试)