05 2018 档案
php 判断sql执行时间
摘要:<?php function getmicrotime() { list($usec, $sec) = explode(" ",microtime()); return ((float)$usec + (float)$sec); } // 记录开始时间 $time_start = getmicrot
阅读全文