版权声明:原创作品,允许转载,转载时请务必以超链接形式标明文章原始出版、作者信息和本声明。否则将追究法律责任。http://blog.csdn.net/mayongzhan - 马永占,myz,mayongzhan
常用的file函数
以下的文件也可以是url...必须是allow_url_fopen
这两个不需要fopen()
file_get_contents()把文件读到字符串中
file_put_contents()把内容写到文件
fopen()打开文件
feof()文件是否到结尾
fgets()从文件指针中读取一行
fwrite()写入文件
fclose()
关闭一个已打开的文件指针
file_exists()检查文件或目录是否存在
unlink()
删除文件
mkdir()
新建目录
<?php
/**
* @name test.php
* @date Sun Jan 20 04:19:06 CST 2008
* @copyright 马永占(MyZ)
* @author 马永占(MyZ)
* @link http://blog.csdn.net/mayongzhan/
*/
header("Content-type: text/html;charset=utf-8");
//检查文件或目录是否存在,新建目录
if (!file_exists('myztest')) {
mkdir('myztest');
}
//从远程读文件
$fp = file_get_contents('http://127.0.0.1/test/test.html');
echo htmlspecialchars($fp);
//写到本地
file_put_contents('myztest/test.txt',$fp);
//打开文件
$fp = fopen('http://127.0.0.1/test/test.html','rb');
$content = '';
//判断文件是否到结尾,读文件
while (!feof($fp)) {
$content .= fgets($fp);
}
//关闭文件
fclose($fp);
//打开文件
$fp = fopen('myztest/test2.txt','wb');
//写到本地
fwrite($fp,$content);
//删除文件
//unlink();
?>