我正在努力解决这个问题:
我想用php解析nagios.dat文件,查找每一行:
" problem_has_been_acknowledged = X" 并计算后面的值为1的频率。
答案 0 :(得分:2)
$file = "/test.dat";
$string = "problem_has_been_acknowledged=1";
$count = substr_count(file_get_contents($file), $string);
echo $count;