龙盟编程博客 | 无障碍搜索 | 云盘搜索神器
快速搜索
主页 > web编程 > php编程 >

执行时间 php计算函数的执行时间

时间:2014-06-01 16:09来源:网络整理 作者:网络 点击:
分享到:
php计算函数的执行时间 [代码片段(15行)]
<?php
$long_str = "this is a test to see how much time md5 function takes to execute over this string";

// start timing from here
$start = microtime(true);

// function to test
$md5 = md5($long_str);

$elapsed = microtime(true) - $start;

echo "That took $elapsed seconds.\n";
?>

精彩图集

赞助商链接