📜  php中文件处理

📅  最后修改于: 2020-09-28 03:06:37             🧑  作者: Mango

PHP文件处理

PHP文件系统允许我们创建文件,逐行读取文件,逐字符读取文件,写入文件,追加文件,删除文件和关闭文件。

PHP打开文件-fopen()

PHPfopen()函数用于打开文件。

句法

resource fopen ( string $filename , string $mode [, bool $use_include_path = false [, resource $context ]] )


PHP关闭文件-fclose()

PHPfclose()函数用于关闭打开的文件指针。

句法

ool fclose ( resource $handle )


PHP读取文件-fread()

PHPfread()函数用于读取文件的内容。它接受两个参数:资源和文件大小。

句法

string fread ( resource $handle , int $length )

  

输出量

hello php file

PHP写入文件-fwrite()

PHPfwrite()函数用于将字符串的内容写入文件。

句法

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


输出量

File written successfully

PHP删除文件-unlink()

PHPunlink()函数用于删除文件。

句法

bool unlink ( string $filename [, resource $context ] )