<?php //write data $f = fopen ('data.txt','w'); if($f){ fwrite($f,'Hello PHP'); fclose($f); echo "ok"; }else{ echo '文件創(chuàng)建失敗'; } ?>
<?php //read data $f = fopen ('data.txt','r'); $content = fgets($f);//fgets一次讀取一行數據 echo $content;//第一行 echo fgets($f);//第二行 echo fgets($f);//第三行 fclose($f); ?>
<?php //read循環(huán)處理,讀取所有數據 $f = fopen ('data.txt','r'); while (!feof($f)){ $content = fgets($f); echo $content; } fclose($f); ?>
<?php //read data 最簡單方式 echo file_get_contents('data.txt'); ?>
Copyright 2014-2025 http://ipnx.cn/ All Rights Reserved | php.cn | 湘ICP備2023035733號