php入門學習知識點六PHP文件的讀寫操作代碼,讀取文件內容可以用以下兩個函數(shù)進行操作fread,file_get_contents
代碼如下:
<?php
//打開文件
$fp=fopen('tmp.html','r');
//讀取文件內容可以用以下兩個函數(shù)進行操作fread,file_get_contents
$str=fread($fp,filesize('tmp.html'));//filesize為獲取文件大小
$content=file_get_contents('tmp.html');
//寫文件
$news=fopen('news.html','w');
fwrite($news,$content);
//關閉文件流
fclose($fp);
fclose($news);
echo$content;
?>
更多信息請查看IT技術專欄