计算php运行时间(毫秒数) By llwsr | 2012 年 9 月 12 日 0 Comment $t1 = microtime(true); //php script here $t2 = microtime(true); (($t2-$t1)*1000).'ms';