<?
php
// 打开文件
$fp = fopen ( ' tmp.html ' , ' r ' );
// 读取文件内容 可以用以下两个函数进行操作 fread,file_get_contents
$str = fread ( $fp , filesize ( ' tmp.html ' )); //filesize为获取文件大小
$content = file_get_contents ( ' tmp.html ' );
// 打开文件
$fp = fopen ( ' tmp.html ' , ' r ' );
// 读取文件内容 可以用以下两个函数进行操作 fread,file_get_contents
$str = fread ( $fp , filesize ( ' tmp.html ' )); //filesize为获取文件大小
$content = file_get_contents ( ' tmp.html ' );
//读取一行
$line=fgets($fp);直到遇到换行符
// 写文件
$news = fopen ( ' news.html ' , ' w ' );
fwrite ( $news , $content );
// 关闭文件流
fclose ( $fp );
fclose ( $news );
echo $content ;
?>