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


PHP printtimedif函數代碼示例

本文整理匯總了PHP中printtimedif函數的典型用法代碼示例。如果您正苦於以下問題:PHP printtimedif函數的具體用法?PHP printtimedif怎麽用?PHP printtimedif使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


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

示例1: urlformat

    //		if (stripos($guest['useragent'], "robot") !== false && $banorama)
    			$marker	= " style='color: #f88;'";
    		else
    			$marker	= "";
    */
    $marker = '';
    $lasturltd = "{$tccell2l}{$marker}><a rel=\"nofollow\" href=\"" . urlformat($guest['lasturl']) . "\">{$guest['lasturl']}";
    if (substr($guest['lasturl'], -11) == '(IP banned)') {
        $lasturltd = "{$tccell2l}{$marker}><a rel=\"nofollow\" href=\"" . substr($guest['lasturl'], 0, -12) . "\">" . substr($guest['lasturl'], 0, -12) . "</a> (IP banned)";
    } elseif (substr($guest['lasturl'], -11) == '(Tor proxy)') {
        $lasturltd = "{$tccell2l}{$marker}><a rel=\"nofollow\" href=\"" . substr($guest['lasturl'], 0, -12) . "\">" . substr($guest['lasturl'], 0, -12) . "</a> (Tor proxy)";
    }
    print "<tr style=\"height:40px;\">\n\t\t\t{$tccell1}{$marker}>{$i}</td>\n\t\t\t{$tccell2s}{$marker}>" . htmlspecialchars($guest['useragent']) . "</td>\n\t\t\t{$tccell1}{$marker}>" . date('h:i:s A', $guest['date'] + $tzoff) . "</td>\n\t\t\t{$lasturltd}</td>";
    if ($banorama && !$guest['banned']) {
        $ipban = "<a href=?banip={$guest['ip']}&valid=" . md5($guest['ip'] . "aglkdgslhkadgshlkgds") . ">Ban</a> - ";
    } elseif ($guest['banned']) {
        $ipban = "<span style='color: #f88; font-weight: bold;'>Banned</span> - ";
    } else {
        $ipban = "";
    }
    if ($isadmin) {
        print "</td>{$tccell1}{$marker}>\n\t\t\t<a href=ipsearch.php?ip={$guest['ip']}>{$guest['ip']}</a>{$smallfont}\n\t\t\t<br>[{$ipban}<a href=http://google.com/search?q={$guest['ip']}>G</a>-<a href=http://en.wikipedia.org/wiki/User:{$guest['ip']}>W</a>-<a href=http://{$guest['ip']}/>H</a>]</a></font>";
    }
    print "</tr>";
}
print $tblend . $footer;
printtimedif($startingtime);
function urlformat($url)
{
    return preg_replace("/^\\/thread\\.php\\?pid=([0-9]+)\$/", "/thread.php?pid=\\1#\\1", $url);
}
開發者ID:STJrInuyasha,項目名稱:jul,代碼行數:31,代碼來源:online.php

示例2: errorpage

function errorpage($text, $redir = '', $redirurl = '')
{
    global $header, $tblstart, $tccell1, $tblend, $footer, $startingtime;
    print "{$header}<br>{$tblstart}{$tccell1}>{$text}";
    if ($redir) {
        print '<br>' . redirect($redirurl, $redir, 0);
    }
    print "{$tblend}{$footer}";
    printtimedif($startingtime);
    die;
}
開發者ID:StapleButter,項目名稱:jul,代碼行數:11,代碼來源:function.php


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