本文整理汇总了PHP中CError::getErrorTypesByCategory方法的典型用法代码示例。如果您正苦于以下问题:PHP CError::getErrorTypesByCategory方法的具体用法?PHP CError::getErrorTypesByCategory怎么用?PHP CError::getErrorTypesByCategory使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CError
的用法示例。
在下文中一共展示了CError::getErrorTypesByCategory方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: filesize
if (file_exists(CMbDebug::DEBUG_PATH)) {
$debug_size = filesize(CMbDebug::DEBUG_PATH);
$debug_size_limit = CMbDebug::DEBUG_SIZE_LIMIT;
$offset = -1;
if ($debug_size > $debug_size_limit) {
$offset = $debug_size - $debug_size_limit;
}
$debug_content = file_get_contents(CMbDebug::DEBUG_PATH, false, null, $offset);
}
// Récupération de la liste des utilisateurs disponibles
$user = new CUser();
$user->template = "0";
$order = "user_last_name, user_first_name";
$list_users = $user->loadMatchingList($order);
// Création du template
$smarty = new CSmartyDP();
$smarty->assign("log", $log_content);
$smarty->assign("log_size", CMbString::toDecaBinary($log_size));
$smarty->assign("debug", $debug_content);
$smarty->assign("debug_size", CMbString::toDecaBinary($debug_size));
$smarty->assign("error_log", $error_log);
$smarty->assign("error_type", $error_type);
$smarty->assign("server_ip", $server_ip);
$smarty->assign("order_by", $order_by);
$smarty->assign("group_similar", $group_similar);
$smarty->assign("error_types", CError::getErrorTypesByCategory());
$smarty->assign("user_id", $user_id);
$smarty->assign("list_users", $list_users);
$smarty->assign("human", $human);
$smarty->assign("robot", $robot);
$smarty->display('view_logs.tpl');