首頁 > 後端開發 > php教程 > PHP读写资料代码

PHP读写资料代码

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
發布: 2016-06-13 13:15:55
原創
921 人瀏覽過

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);
?>

登入後複製

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
No input file specified.這個咋解決
來自於 1970-01-01 08:00:00
0
0
0
No input file specified.開啟頁面就這樣
來自於 1970-01-01 08:00:00
0
0
0
thinkphp中Controller裡面使用Request::File('image');
來自於 1970-01-01 08:00:00
0
0
0
javascript - <include file="Public:header"/>無效
來自於 1970-01-01 08:00:00
0
0
0
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板