Home  >  Article  >  Backend Development  >  PHP读写资料代码

PHP读写资料代码

WBOY
WBOYOriginal
2016-06-13 10:39:00785browse

PHP读写文件代码

<?php    $str1 = "write something into file. ";    $str2 = "this is a text file. ";    $filename = "C:/data/01.txt";        // 写文件    $file = fopen($filename, "w");    $w1 = fwrite($file, $str1);    $w1 = fwrite($file, "\r\n");    $w1 = fwrite($file, $str2);    fclose($file);        // 读文件    $file = fopen($filename, "r");    while (!feof ($file)) {          echo fgets($file) ."<br>" ;    }    fclose($file);?>

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn