PHP:从文件和计数中读取

时间:2016-09-20 12:13:06

标签: php nagios

我正在努力解决这个问题:

我想用php解析nagios.dat文件,查找每一行:

" problem_has_been_acknowledged = X" 并计算后面的值为1的频率。

1 个答案:

答案 0 :(得分:2)

$file = "/test.dat";
$string = "problem_has_been_acknowledged=1";
$count = substr_count(file_get_contents($file), $string);

echo $count;