好吧,我正在尝试解析 PHP 错误日志。因此我构建了以下类:
<?php
/**
* Created by PhpStorm.
* User: toton
* Date: 2/29/2016
* Time: 8:16 AM
*/
final class error_parser
{
private $log_file_path;
private $current_line;
private $recent;
/**
* error_parser constructor.
* Takes in the path of the error log file of PHP ERROR LOG FILE.
* And another param for checking to get the direction to traverse the file.
* @param string $log_file_path
* @param bool $recent
*/
public function __construct($log_file_path, $recent = true)
{
$this->log_file_path = $log_file_path;
$this->recent = $recent;
$this->_parse();
return true;
}
/**
* Parses the PHP ERROR LOG, and pushes an array with the following structure:
* array(
* "date" => {DATE},
* "severity" => {SEVERITY},
* "message" => {message},
* "stack_trace" => array(each({STACK_TRACE})) || false;
* );
* to the main array.
* !!!! IMPORTANT !!!!
* STACK TRACE IS NOT SUPPORTED AT THIS MOMENT
* TODO: IMPLEMENT STACK TRACE
* MILESTONE: NEXT_MAJOR RELEASE
*/
private function _parse() {
$contents = file_get_contents($this->log_file_path);
if(!$contents){
throw new Exception("Log file does not exist.", 2);
}
$lines = explode("\n", $contents);
if($this->recent) {
$lines = array_reverse($lines);
}
for($this->current_line = 0; $this->current_line < count($lines); $this->current_line++) {
parse_loop:
$current_line = trim($lines[$this->current_line]);
if(strlen($current_line) == 0) {
//If the line is empty throw it to the dustbin.
// SORRY, FOR THE GOTO.
// GOD PLEASE FORGIVE ME!
$this->current_line = $this->current_line + 1;
goto parse_loop;
}
if($current_line[0] != "[") {
// NOT SUPPORTING STACK TRACES AT THE MOMENT
$this->current_line = $this->current_line + 1;
goto parse_loop;
}
$dateArr = array();
preg_match('~^\[(.*?)\]~', $current_line, $dateArr);
$date = array(
"date" => explode(" ", $dateArr[1])[0],
"time" => explode(" ", $dateArr[1])[1]
);
$severity = "";
if(strpos($current_line, "PHP Warning")) {
$severity = "WARNING";
} elseif(strpos($current_line, "PHP Notice")) {
$severity = "NOTICE";
} elseif(strpos($current_line, "PHP Fatal error")) {
$severity = "FATAL";
} elseif(strpos($current_line, "PHP Parse error")) {
$severity = "SYNTAX_ERROR";
} else {
$severity = "UNIDENTIFIED_ERROR";
}
}
}
}
(好吧,代码中可能有一些不好的做法:-P)
例如,一个错误可能是这样的 - [28-Dec-2015 07:51:31 UTC] PHP 警告:PHP 启动:无法加载动态库 'C:\xampp\php\ext\php_pspell. dll' - 找不到指定的模块。
无论如何,我能够提取错误的日期和类型。但是我找不到解析错误消息的方法。
所以我的问题是,如何从 PHP 错误日志中解析错误消息?
提前致谢,干杯!
最佳答案
我有点晚了,但这是我的解决方案(它也支持堆栈跟踪):
<?php
use DateTime;
use DateTimeZone;
class ErrorLog {
private $logFilePath;
/**
* ErrorLog constructor.
*
* @param string $logFilePath
*/
public function __construct(string $logFilePath) {
$this->logFilePath = $logFilePath;
}
/**
* Parses the PHP error log to an array.
*
* @return \Generator
*/
public function getParsedLogFile(): \Generator {
$parsedLogs = [];
$logFileHandle = fopen($this->logFilePath, 'rb');
while (!feof($logFileHandle)) {
$currentLine = str_replace(PHP_EOL, '', fgets($logFileHandle));
// Normal error log line starts with the date & time in []
if ('[' === $currentLine[0]) {
if (10000 === \count($parsedLogs)) {
yield $parsedLogs;
$parsedLogs = [];
}
// Get the datetime when the error occurred and convert it to berlin timezone
try {
$dateArr = [];
preg_match('~^\[(.*?)\]~', $currentLine, $dateArr);
$currentLine = str_replace($dateArr[0], '', $currentLine);
$currentLine = trim($currentLine);
$errorDateTime = new DateTime($dateArr[1]);
$errorDateTime->setTimezone(new DateTimeZone('Europe/Berlin'));
$errorDateTime = $errorDateTime->format('Y-m-d H:i:s');
} catch (\Exception $e) {
$errorDateTime = '';
}
// Get the type of the error
if (false !== strpos($currentLine, 'PHP Warning')) {
$currentLine = str_replace('PHP Warning:', '', $currentLine);
$currentLine = trim($currentLine);
$errorType = 'WARNING';
} else if (false !== strpos($currentLine, 'PHP Notice')) {
$currentLine = str_replace('PHP Notice:', '', $currentLine);
$currentLine = trim($currentLine);
$errorType = 'NOTICE';
} else if (false !== strpos($currentLine, 'PHP Fatal error')) {
$currentLine = str_replace('PHP Fatal error:', '', $currentLine);
$currentLine = trim($currentLine);
$errorType = 'FATAL';
} else if (false !== strpos($currentLine, 'PHP Parse error')) {
$currentLine = str_replace('PHP Parse error:', '', $currentLine);
$currentLine = trim($currentLine);
$errorType = 'SYNTAX';
} else if (false !== strpos($currentLine, 'PHP Exception')) {
$currentLine = str_replace('PHP Exception:', '', $currentLine);
$currentLine = trim($currentLine);
$errorType = 'EXCEPTION';
} else {
$errorType = 'UNKNOWN';
}
if (false !== strpos($currentLine, ' on line ')) {
$errorLine = explode(' on line ', $currentLine);
$errorLine = trim($errorLine[1]);
$currentLine = str_replace(' on line ' . $errorLine, '', $currentLine);
} else {
$errorLine = substr($currentLine, strrpos($currentLine, ':') + 1);
$currentLine = str_replace(':' . $errorLine, '', $currentLine);
}
$errorFile = explode(' in /', $currentLine);
$errorFile = '/' . trim($errorFile[1]);
$currentLine = str_replace(' in ' . $errorFile, '', $currentLine);
// The message of the error
$errorMessage = trim($currentLine);
$parsedLogs[] = [
'dateTime' => $errorDateTime,
'type' => $errorType,
'file' => $errorFile,
'line' => (int)$errorLine,
'message' => $errorMessage,
'stackTrace' => []
];
} // Stack trace beginning line
else if ('Stack trace:' === $currentLine) {
$stackTraceLineNumber = 0;
while (!feof($logFileHandle)) {
$currentLine = str_replace(PHP_EOL, '', fgets($logFileHandle));
// If the current line is a stack trace line
if ('#' === $currentLine[0]) {
$parsedLogsLastKey = key($parsedLogs);
$currentLine = str_replace('#' . $stackTraceLineNumber, '', $currentLine);
$parsedLogs[$parsedLogsLastKey]['stackTrace'][] = trim($currentLine);
$stackTraceLineNumber++;
} // If the current line is the last stack trace ('thrown in...')
else {
break;
}
}
}
}
yield $parsedLogs;
}
}
关于php - 如何解析PHP错误日志?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35693581/
我正在学习如何使用Nokogiri,根据这段代码我遇到了一些问题:require'rubygems'require'mechanize'post_agent=WWW::Mechanize.newpost_page=post_agent.get('http://www.vbulletin.org/forum/showthread.php?t=230708')puts"\nabsolutepathwithtbodygivesnil"putspost_page.parser.xpath('/html/body/div/div/div/div/div/table/tbody/tr/td/div
总的来说,我对ruby还比较陌生,我正在为我正在创建的对象编写一些rspec测试用例。许多测试用例都非常基础,我只是想确保正确填充和返回值。我想知道是否有办法使用循环结构来执行此操作。不必为我要测试的每个方法都设置一个assertEquals。例如:describeitem,"TestingtheItem"doit"willhaveanullvaluetostart"doitem=Item.new#HereIcoulddotheitem.name.shouldbe_nil#thenIcoulddoitem.category.shouldbe_nilendend但我想要一些方法来使用
我有一个字符串input="maybe(thisis|thatwas)some((nice|ugly)(day|night)|(strange(weather|time)))"Ruby中解析该字符串的最佳方法是什么?我的意思是脚本应该能够像这样构建句子:maybethisissomeuglynightmaybethatwassomenicenightmaybethiswassomestrangetime等等,你明白了......我应该一个字符一个字符地读取字符串并构建一个带有堆栈的状态机来存储括号值以供以后计算,还是有更好的方法?也许为此目的准备了一个开箱即用的库?
关闭。这个问题是opinion-based.它目前不接受答案。想要改进这个问题?更新问题,以便editingthispost可以用事实和引用来回答它.关闭4年前。Improvethisquestion我想在固定时间创建一系列低音和高音调的哔哔声。例如:在150毫秒时发出高音调的蜂鸣声在151毫秒时发出低音调的蜂鸣声200毫秒时发出低音调的蜂鸣声250毫秒的高音调蜂鸣声有没有办法在Ruby或Python中做到这一点?我真的不在乎输出编码是什么(.wav、.mp3、.ogg等等),但我确实想创建一个输出文件。
给定这段代码defcreate@upgrades=User.update_all(["role=?","upgraded"],:id=>params[:upgrade])redirect_toadmin_upgrades_path,:notice=>"Successfullyupgradeduser."end我如何在该操作中实际验证它们是否已保存或未重定向到适当的页面和消息? 最佳答案 在Rails3中,update_all不返回任何有意义的信息,除了已更新的记录数(这可能取决于您的DBMS是否返回该信息)。http://ar.ru
我在我的项目目录中完成了compasscreate.和compassinitrails。几个问题:我已将我的.sass文件放在public/stylesheets中。这是放置它们的正确位置吗?当我运行compasswatch时,它不会自动编译这些.sass文件。我必须手动指定文件:compasswatchpublic/stylesheets/myfile.sass等。如何让它自动运行?文件ie.css、print.css和screen.css已放在stylesheets/compiled。如何在编译后不让它们重新出现的情况下删除它们?我自己编译的.sass文件编译成compiled/t
大约一年前,我决定确保每个包含非唯一文本的Flash通知都将从模块中的方法中获取文本。我这样做的最初原因是为了避免一遍又一遍地输入相同的字符串。如果我想更改措辞,我可以在一个地方轻松完成,而且一遍又一遍地重复同一件事而出现拼写错误的可能性也会降低。我最终得到的是这样的:moduleMessagesdefformat_error_messages(errors)errors.map{|attribute,message|"Error:#{attribute.to_s.titleize}#{message}."}enddeferror_message_could_not_find(obje
我正在寻找执行以下操作的正确语法(在Perl、Shell或Ruby中):#variabletoaccessthedatalinesappendedasafileEND_OF_SCRIPT_MARKERrawdatastartshereanditcontinues. 最佳答案 Perl用__DATA__做这个:#!/usr/bin/perlusestrict;usewarnings;while(){print;}__DATA__Texttoprintgoeshere 关于ruby-如何将脚
我主要使用Ruby来执行此操作,但到目前为止我的攻击计划如下:使用gemsrdf、rdf-rdfa和rdf-microdata或mida来解析给定任何URI的数据。我认为最好映射到像schema.org这样的统一模式,例如使用这个yaml文件,它试图描述数据词汇表和opengraph到schema.org之间的转换:#SchemaXtoschema.orgconversion#data-vocabularyDV:name:namestreet-address:streetAddressregion:addressRegionlocality:addressLocalityphoto:i
Rackup通过Rack的默认处理程序成功运行任何Rack应用程序。例如:classRackAppdefcall(environment)['200',{'Content-Type'=>'text/html'},["Helloworld"]]endendrunRackApp.new但是当最后一行更改为使用Rack的内置CGI处理程序时,rackup给出“NoMethodErrorat/undefinedmethod`call'fornil:NilClass”:Rack::Handler::CGI.runRackApp.newRack的其他内置处理程序也提出了同样的反对意见。例如Rack