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


PHP logger::parseListLogfiles方法代碼示例

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


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

示例1: isset

$logfilename = isset($_GET['logfilename']) && $_GET['logfilename'] != '' ? tep_db_prepare_input($_GET['logfilename']) : '';
if (isset($_POST['me_action'])) {
    if ($_POST['me_action'] == 'LOADLOGFILE') {
        $filename = tep_db_prepare_input($_POST['filename']);
        $result = '<div id="file-content-result">';
        $result .= '<h3 class="ui-corner-all" style="position:fixed;top:75px;right:20px;left:340px;background:#333;color:#efefef;padding:5px;">' . $filename . '</h3>';
        $result .= '<pre style="margin-top:30px;">';
        $result .= logger::openLogfile($filename);
        $result .= '</pre>';
        $result .= '</div>';
        echo utf8_encode($result);
        exit;
    }
}
$files = logger::retrieveListLogfiles();
$files_parsed = logger::parseListLogfiles($files);
$content .= '<div id="file-list" class="box ui-corner-all" style="position:fixed;top:140px;bottom:30px;padding:5px 10px;overflow-y:scroll;">';
foreach ($files_parsed as $path => $files) {
    $content .= '<div style="margin:5px 0;">';
    $content .= '<h3 style="margin:0;">' . $path . '</h3>';
    foreach ($files as $f) {
        $content .= '<div id="' . $path . '_' . substr_replace($f, '', -4) . '" class="file pointer">&sdot; ' . $f . '</div>';
    }
    $content .= '</div>';
}
$content .= '</div>';
$content .= '<div id="move-top" class="pointer" style="position:fixed;top:140px;right:20px;left:340px;height:25px;line-height:25px;">&laquo; SCROLL TOP</div>';
$content .= '<div id="file-content" class="box ui-corner-all" style="position:fixed;top:165px;bottom:30px;right:20px;left:340px;overflow:scroll;">';
$content .= '<h2>Please select a log file, its contents will be displayed here</h2>';
$content .= '</div>';
$content .= '<div id="move-end" class="pointer" style="position:fixed;bottom:5px;right:20px;left:340px;height:25px;line-height:25px;">SCROLL END OF FILE &raquo;</div>';
開發者ID:blasiuscosa,項目名稱:manobo-2008,代碼行數:31,代碼來源:log-analyzer.php


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