本文概述
- PHP打开文件-fopen()
- PHP关闭文件-fclose()
- PHP读取文件-fread()
- PHP写入文件-fwrite()
- PHP删除文件-unlink()
PHP打开文件-fopen()PHP fopen()函数用于打开文件。
句法
resource fopen ( string $filename , string $mode [, bool $use_include_path = false [, resource $context ]] )
例子
<
?php
$handle = fopen("c:\\folder\\file.txt", "r");
?>
点击我了解更多详细信息…
PHP关闭文件-fclose()PHP fclose()函数用于关闭打开的文件指针。
句法
ool fclose ( resource $handle )
例子
<
?php
fclose($handle);
?>
PHP读取文件-fread()PHP fread()函数用于读取文件的内容。它接受两个参数:资源和文件大小。
句法
string fread ( resource $handle , int $length )
例子
<
?php
$filename = "c:\\myfile.txt";
$handle = fopen($filename, "r");
//open file in read mode$contents = fread($handle, filesize($filename));
//read fileecho $contents;
//printing data of file
fclose($handle);
//close file
?>
输出
hello php file
点击我了解更多详细信息…
PHP写入文件-fwrite()PHP fwrite()函数用于将字符串的内容写入文件。
句法
int fwrite ( resource $handle , string $string [, int $length ] )
例子
<
?php
$fp = fopen('data.txt', 'w');
//open file in write mode
fwrite($fp, 'hello ');
fwrite($fp, 'php file');
fclose($fp);
echo "File written successfully";
?>
【PHP文件处理】输出
File written successfully
点击我了解更多详细信息…
PHP删除文件-unlink()PHP unlink()函数用于删除文件。
句法
bool unlink ( string $filename [, resource $context ] )
例子
<
?php
unlink('data.txt');
echo "File deleted successfully";
?>
点击我了解更多详细信息…