美文网首页
PHP逐行读取匹配内容

PHP逐行读取匹配内容

作者: 长安猎人 | 来源:发表于2018-10-25 11:35 被阅读0次
    $filename = 'log';
    $handle = fopen($filename, 'r');
    while(!feof($handle)) {
        $buffer = fgets($handle, 4096);
        $text = trim($buffer);
        if(strpos($text, '@sina')) {
            echo $text;
        }
    }
    fclose($handle);
    

    相关文章

      网友评论

          本文标题:PHP逐行读取匹配内容

          本文链接:https://www.haomeiwen.com/subject/hlpqtqtx.html