php中文件处理

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

PHP文件处理

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

PHP打开文件-fopen()

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

句法

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

<?php
$handle = fopen("c:folderfile.txt", "r");
?>

PHP关闭文件-fclose()

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

句法

ool fclose ( resource $handle )

<?php
fclose($handle);
?>

PHP读取文件-fread()

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

句法

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 file  

echo $contents;//printing data of file
fclose($handle);//close file  
?>  

输出量

hello php file

PHP写入文件-fwrite()

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

句法

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";
?>

输出量

File written successfully

PHP删除文件-unlink()

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

句法

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

<?php  
unlink('data.txt');
 
echo "File deleted successfully";
?>

类别:PHP 技巧

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册