1
2
3
4
5
6
7
8
9
10
11
12
13
| <?php
| function smarty_function_querytime($paramer,&$smarty){
| global $db,$GlobalStartTime;
| if (PHP_VERSION >= '5.0.0'){
| $query_time = number_format(microtime(true) - $GlobalStartTime, 6);
| }else{
| list($now_usec, $now_sec) = explode(' ', microtime());
| list($start_usec, $start_sec) = explode(' ', $GlobalStartTime);
| $query_time = number_format(($now_sec - $start_sec) + ($now_usec - $start_usec), 6);
| }
| echo '<div style="background-color:red; width:100%; display:block; float:left; height:40px; font-size:18px;">用时 '.$query_time.' 秒</div>';
| }
| ?>
|
|