将在浏览器中显示的内容写入文件php?

时间:2015-05-06 06:21:44

标签: php file text

我想将浏览器中显示的内容写入文本文件。我想在浏览器中显示数据并写入文本文件。这是我的剧本。我使用file_put_contents写入文本文件。但是当我访问我的文本文件时,我看不到任何数据。

row = cursor.fetchone()
if row:
    usernick, = row

1 个答案:

答案 0 :(得分:1)

我会像这样编码

<?php
    $dfile = fopen("/usr/share/dict/words", "r");
    $ob_file = fopen('mycontent.txt',"w");
    while(!feof($dfile)) {
        $mynextline = fgets($dfile);
        if (preg_match("/lly/", $mynextline)) {
            echo "$mynextline<br>";
            fwrite($ob_file, $mynextline);
        }
}

fclose($dfile);
fclose($ob_file);

?>