source: branches/feature-module-update/data/module/Smarty/libs/internals/core.get_microtime.php @ 15080

Revision 15080, 359 bytes checked in by nanasess, 17 years ago (diff)

svn properties 設定

  • svn:mime-type - application/x-httpd-php; charset=UTF-8
  • svn:keywords - Id
  • Property svn:keywords set to Id
  • Property svn:mime-type set to application/x-httpd-php; charset=UTF-8
Line 
1<?php
2/**
3 * Smarty plugin
4 * @package Smarty
5 * @subpackage plugins
6 */
7
8/**
9 * Get seconds and microseconds
10 * @return double
11 */
12function smarty_core_get_microtime($params, &$smarty)
13{
14    $mtime = microtime();
15    $mtime = explode(" ", $mtime);
16    $mtime = (double)($mtime[1]) + (double)($mtime[0]);
17    return ($mtime);
18}
19
20
21/* vim: set expandtab: */
22
23?>
Note: See TracBrowser for help on using the repository browser.