📅  最后修改于: 2020-09-28 03:06:37             🧑  作者: Mango
PHP文件系统允许我们创建文件,逐行读取文件,逐字符读取文件,写入文件,追加文件,删除文件和关闭文件。
PHPfopen()函数用于打开文件。
句法
resource fopen ( string $filename , string $mode [, bool $use_include_path = false [, resource $context ]] )
例
PHPfclose()函数用于关闭打开的文件指针。
句法
ool fclose ( resource $handle )
例
PHPfread()函数用于读取文件的内容。它接受两个参数:资源和文件大小。
句法
string fread ( resource $handle , int $length )
例
输出量
hello php file
PHPfwrite()函数用于将字符串的内容写入文件。
句法
int fwrite ( resource $handle , string $string [, int $length ] )
例
输出量
File written successfully
PHPunlink()函数用于删除文件。
句法
bool unlink ( string $filename [, resource $context ] )
例