core.get_microtime.php
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:0k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. <?php
  2. /**
  3.  * Smarty plugin
  4.  * @package Smarty
  5.  * @subpackage plugins
  6.  */
  7. /**
  8.  * Get seconds and microseconds
  9.  * @return double
  10.  */
  11. function smarty_core_get_microtime($params, &$smarty)
  12. {
  13.     $mtime = microtime();
  14.     $mtime = explode(" ", $mtime);
  15.     $mtime = (double)($mtime[1]) + (double)($mtime[0]);
  16.     return ($mtime);
  17. }
  18. /* vim: set expandtab: */
  19. ?>