当前位置: 代码迷 >> PHP >> PHP读写资料代码
  详细解决方案

PHP读写资料代码

热度:383   发布时间:2012-09-13 09:51:52.0
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);
?>

  相关解决方案