當前位置: 首頁>>代碼示例>>PHP>>正文


PHP helper::getmicrotime方法代碼示例

本文整理匯總了PHP中helper::getmicrotime方法的典型用法代碼示例。如果您正苦於以下問題:PHP helper::getmicrotime方法的具體用法?PHP helper::getmicrotime怎麽用?PHP helper::getmicrotime使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在helper的用法示例。


在下文中一共展示了helper::getmicrotime方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: isset

$check_file_url = isset($_SERVER['PHP_SELF']) ? $_SERVER['PHP_SELF'] : '1';
//if(strstr($check_file_url,"admin") || strstr($check_file_url,"manage")) die("為了保證你後台的安全,請更改管理後台文件夾(默認為admin的目錄)名稱後再登陸,新目錄名不能包含 admin 和 manage 這兩個敏感單詞");
$time_start = helper::getmicrotime();
//開始時間
/**
 * 頁麵動作 model 分支選擇
 *     動作函數寫在文件末尾,全部以前綴 m__ 開頭
 */
$_GET['m'] = isset($_GET['m']) ? $_GET['m'] : 'list';
/*初始化對象*/
$a_obj = new Admin();
$l_obj = new Logs();
if (function_exists("m__" . $_GET['m'])) {
    call_user_func("m__" . $_GET['m']);
}
$time_end = helper::getmicrotime();
//主程序執行時間,如果要包含模板的輸出時間,則可以調用該靜態時間方法單獨計算
$page['data_fill_time'] = $time_end - $time_start;
//執行時間
/**
 * 模板載入選擇
 *     模板頁麵為PHP+HTML混合編寫,如果模板頁麵中也有區塊函數,模板函數以 tpl__ 為前綴
 */
//判斷終端,然後選擇需要的模板
$template = "pc";
//自動判斷是否為手機端,不是都到pc端
$template = helper::from_mobile() ? 'wap' : 'pc';
$tpl_filename = str_replace('\\', '', str_replace(dirname(__FILE__), '', __FILE__));
$tpl_filename = str_replace('/', '', $tpl_filename);
require dirname(__FILE__) . '/' . $template . '/tpl_' . $tpl_filename;
function m__login()
開發者ID:cranefly,項目名稱:crane,代碼行數:31,代碼來源:index.php

示例2: define

<?php

define('CRANE_CMS', true);
require_once dirname(__FILE__) . "/core/init.php";
$time_start = helper::getmicrotime();
//開始時間
$dbm = new db_mysql();
//數據庫類實例
$c = new common($dbm);
// 動作函數
$_GET['m'] = isset($_GET['m']) ? $_GET['m'] : '';
if (function_exists("m__" . $_GET['m'])) {
    call_user_func("m__" . $_GET['m']);
}
/**
 * 
 */
/*生成驗證碼
*/
function m__vcode()
{
    require_once dirname(__FILE__) . "/core/imgcode.class.php";
    $name = !isset($_GET['c']) || $_GET['c'] == '' ? 'login' : $_GET['c'];
    $w = !isset($_GET['w']) || $_GET['w'] == '' ? '60' : $_GET['w'];
    $h = !isset($_GET['h']) || $_GET['h'] == '' ? '24' : $_GET['h'];
    if ($name == 'login' || $name == 'reg' || $name == 'feedback' || $name == 'tougao') {
        Image::buildImageVerify(5, 2, 'png', $w, $h, $name);
    }
}
開發者ID:cranefly,項目名稱:crane,代碼行數:29,代碼來源:action.php

示例3: query_update

 /**
  * 執行更新、刪除操作
  */
 public function query_update($sql)
 {
     $_start = helper::getmicrotime();
     mysql_query($sql);
     $this->query_count++;
     $querys = array('sql' => $sql, 'error' => mysql_error(), 'sql_time' => helper::getmicrotime() - $_start);
     if (defined('SQL_ERR_LOG') && SQL_ERR_LOG == '1' && $querys['error'] != '') {
         helper::logs('sql_error', $querys['error'] . $querys['sql']);
     }
     if (defined('SQL_LOG') && SQL_LOG == '1') {
         helper::logs('sql', $querys['sql']);
     }
     return $querys;
 }
開發者ID:cranefly,項目名稱:crane,代碼行數:17,代碼來源:database.class.php

示例4: foreach

                <br>
                <?php 
$i = 0;
foreach ($c->categories as $k => $v) {
    if ($v['parent_id'] == 0) {
        if ($i > 0) {
            echo ' - ';
        }
        echo '<a href="' . $v['surl'] . '">' . $v['cname'] . '</a>';
        $i++;
    }
}
?>
<br/>
                <?php 
echo 'Processed in ' . number_format(helper::getmicrotime() - $time_start, 2, '.', '') . ' MilliSeconds ';
?>
&nbsp;&nbsp;<?php 
if (defined('COUNT_CODE')) {
    echo html_entity_decode(COUNT_CODE);
}
?>
            </div>
        </div>
    </div>
    <?php 
require_once dirname(__FILE__) . "/../../../plugins/gov.qqservice/qqservice_html.php";
?>
    <?php 
$msg_show_opacty = 1;
//是否半透明層:1為半透明層顯示,0為直接顯示,半透明層顯示需要調用 show_message() JS函數
開發者ID:cranefly,項目名稱:crane,代碼行數:31,代碼來源:inc_foot.php

示例5: query_update

 /**
  * 執行更新、刪除操作
  */
 public function query_update($sql)
 {
     $_start = helper::getmicrotime();
     mysql_query($sql);
     $this->query_count++;
     $querys = array('sql' => $sql, 'error' => mysql_error(), 'sql_time' => helper::getmicrotime() - $_start);
     return $querys;
 }
開發者ID:cranefly,項目名稱:crane,代碼行數:11,代碼來源:database.class.php

示例6: number_format

<!-- 底部版權開始 -->
<div class="mbody mfoot" style="clear:both;"> 
    <div class="l">
        &copy; 2013 &nbsp;&nbsp;掌易科技
    </div>
    <div class="r">
        <?php 
echo 'Processed in ' . number_format(helper::getmicrotime() - $time_start, 2, '.', '') . ' MilliSecond ' . $dbm->query_count . ' Queries ';
?>
&nbsp;&nbsp;
    </div>
</div> <!-- 底部版權結束 -->
<!-- 編輯密碼,全部頁麵公用 -->
<div id="edit_my_pass" style="display:none;">
    <table class="tb3">
        <tr><td>舊 密 碼:</td><td><input type="password" id="upassnew" class="ipt" value="" style="width:200px;"></td><td>&nbsp;<span id="upass_tips"></span></td></tr>
        <tr><td>新 密 碼:</td><td><input type="password" id="new_upass" class="ipt" value="" style="width:200px;"></td><td>&nbsp;<span id="upass_tips"></span></td></tr>
        <tr><td>確認密碼:</td><td><input type="password" id="re_upass" class="ipt" value="" style="width:200px;"></td><td>&nbsp;<span id="upass_tips"></span></td></tr>
        <tr><td></td><td colspan="2"><a href="javascript:void(0);" id="btn_edit_pass" onClick="edit_my_pass();" class="but2">修改密碼</a>&nbsp;&nbsp;<span class="div_alert"></span></td></tr>
    </table>
</div>
開發者ID:cranefly,項目名稱:crane,代碼行數:21,代碼來源:inc_footer.php


注:本文中的helper::getmicrotime方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。