?? core.get_microtime.php
字號(hào):
<?php/** * Smarty plugin * @package Smarty * @subpackage plugins *//** * Get seconds and microseconds * @return double */function smarty_core_get_microtime($params, &$smarty){ $mtime = microtime(); $mtime = explode(" ", $mtime); $mtime = (double)($mtime[1]) + (double)($mtime[0]); return ($mtime);}/* vim: set expandtab: */?>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -