Xây dựng function getMicrotime (ok) 9.3

Thời gian chi thành hai phần phần nguyên và phân thập phân :(

if (!function_exists('getMicrotime')) {
    function getMicrotime() {
      list($usec, $sec) = explode(" ", microtime());
      return ((float) $usec + (float) $sec);
    }
  }

Last updated