PHP時間を計算関数サンプルコード

サンプルコード:
//関数:時間を計算するメッソッド
//説明:Echo Runtime(1);
Function Runtime($mode=0){
Static $s;
IF(!$mode){
$s=microtime();
Return;
}
$e=microtime();
$s=Explode(" “, $s);
$e=Explode(" “, $e);
Return Sprintf(“%.2f ms",($e[1]+$e[0]-$s[1]-$s[0])*1000);
}

Development

Posted by arkgame