首页 > 代码库 > php文件操作

php文件操作

 1、file_get_contents获取文本或者网页的内容

string file_get_contents ( string $filename [, bool $use_include_path = false [, resource $context [, int $offset = -1 [, int $maxlen ]]]] )
文件不存在报错

 

2、file_get_contents把内容写入到文件

int file_put_contents ( string $filename , mixed $data [, int $flags = 0 [, resource $context ]] )
文件不存在自动创建
 
3、fopen打开一个文件   打开文件或者 URL
resource fopen ( string $filename , string $mode [, bool $use_include_path = false [, resource $context ]] )
打开模式后面加 b 以二进制模式打开,不受编码影响
 
4、fread — 读取文件(可安全用于二进制文件)
string fread ( resource $handle , int $length )
 
5、

fwrite — 写入文件(可安全用于二进制文件)

int fwrite ( resource $handle , string $string [, int $length ] )
 
6、

fclose — 关闭一个已打开的文件指针

bool fclose ( resource $handle )
 
7、

fgets — 从文件指针中读取一行

string fgets ( resource $handle [, int $length ] )

php文件操作