如何把内容写入到文件

第一种方法:

public function index(){
        $path='./Public/test.txt';
        $fp=fopen($path,'a+');
        fwrite($fp,"\r\n你好");
        fclose($fp);
    }

第二种方法:

public function index(){
        $path='./Public/test.txt';
        file_put_contents($path, "\r\n第二种方法",FILE_APPEND);
    }

如果后面不写参数FILE_APPEND,那么将覆盖前面的内容

posted @ 2015-12-27 00:32  屌丝IT男  阅读(352)  评论(0编辑  收藏  举报