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


PHP WPFB_Core::GetLogFile方法代碼示例

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


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

示例1: InitClass

 static function InitClass()
 {
     wpfb_loadclass("Admin", "GetID3", "FileUtils", "Misc");
     require_once ABSPATH . 'wp-admin/includes/file.php';
     @ini_set('max_execution_time', '0');
     @set_time_limit(0);
     self::$error_log_file = WPFB_Core::GetLogFile('sync');
     @ini_set("error_log", self::$error_log_file);
     set_error_handler(array(__CLASS__, 'CaptureError'));
     set_exception_handler(array(__CLASS__, 'CaptureException'));
     register_shutdown_function(array(__CLASS__, 'CaptureShutdown'));
     if (self::$debug_output = !empty($_GET['output']) || !empty($_GET['debug'])) {
         @ini_set('display_errors', 1);
         @error_reporting(E_ALL);
     }
     // raise memory limit if needed
     if (WPFB_Misc::ParseIniFileSize(ini_get('memory_limit')) < 64000000) {
         @ini_set('memory_limit', '128M');
         @ini_set('memory_limit', '256M');
         @ini_set('memory_limit', '512M');
     }
 }
開發者ID:noxian,項目名稱:WP-Filebase,代碼行數:22,代碼來源:Sync.php

示例2: showLog

 /**
  * Lists 20 normal log entries and max. 100 errors
  *
  * @param $for
  */
 static function showLog($for)
 {
     $filename = WPFB_Core::GetLogFile($for);
     $lines = is_file($filename) ? file($filename) : null;
     $date_len = strlen('[2015-12-28 21:53:09] ');
     if (empty($lines)) {
         echo "No log for '{$for}' yet!";
         return;
     }
     $n = count($lines);
     $ni = $n - 1;
     echo "<pre><strong>{$for}</strong> ", sprintf(__('%s ago'), human_time_diff(filemtime($filename))), ":\n";
     for ($i = $n - 1; $i >= max(0, $n - 100); $i--) {
         $msg = rtrim(substr($lines[$i], $date_len));
         $e = stripos($msg, 'error') !== false || stripos($msg, 'failed') !== false || stripos($msg, 'exception') !== false || stripos($msg, 'unexpected') !== false || stripos($msg, 'warning') !== false || stripos($msg, 'not found') !== false;
         if ($i < $n - 20 && !$e) {
             continue;
         }
         if ($ni != $i) {
             echo "<b>\t[...]\n</b>";
         }
         $e && ($msg = "<span class='error'>" . esc_html($msg) . "</span>");
         echo '<b>' . esc_html(substr($lines[$i], 0, $date_len)) . '</b>', str_replace('&lt;br&gt;', '<br>', $msg), "\n";
         $ni = $i - 1;
     }
     echo '</pre>';
 }
開發者ID:noxian,項目名稱:WP-Filebase,代碼行數:32,代碼來源:AdminDashboard.php


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