最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
php入门教程之文件操作基础
时间:2022-11-14 23:01:21 编辑:袖梨 来源:一聚教程网
(1)文件的创建与打开;
(2)文件的操作;
(3)文件的关闭;
在PHP中,通过一系列的函数来完成文件的操作,常用的函数及其简要说明罗列如下:
//文件打开,完成文件打开(在文件不存在时可创建文件),依赖于文件中模式的不同而具有不同的操作
resource fopen ( string $filename , string $mode [, bool $use_include_path = false [, resource $context ]] )
//$filename 打开或者要创建文件的路径及文件名,为了便于移植,使用反斜杠/为佳
//$mode 是文件打开的模式,有很多模式,比较常用的r,w,a,同样为了便于移植,建议mode中增加b(二进制)
//通常读文件为 rb ,写文件为 ab,分别表示以二进制读文件及以二进制向文件追加内容
//在文件打开操作过程中出现错误请首先检查文件所在的路径的权限设置
代码如下 | 复制代码 |
//文件操作函数 //写操作相关函数 //把$string的内容写到文件指针$handle int fwrite ( resource $handle , string $string [, int $length ] ) //函数是fwrite的别名函数 fputs() //也能完成写操作,不同的是集成了fopen(),fwrite(),fclose(),使用该函数不用再打开关闭文件 int file_put_contents ( string $filename , mixed $data [, int $flags = 0 [, resource $context ]] ) //读操作相关函数 //逐行读取 string fgets ( resource $handle [, int $length ] ) //逐行读,能够过滤标记 string fgetss ( resource $handle [, int $length [, string $allowable_tags ]] ) //逐行读,能够根据定界符输出到数组 array fgetcsv ( resource $handle [, int $length = 0 [, string $delimiter = ',' [, string $enclosure = '"' [, string $escape = '' ]]]] ) //一次性读取一个文件并将文件内容发送到标准输出,包含了文件打开与文件关闭操作 int readfile ( string $filename [, bool $use_include_path = false [, resource $context ]] ) //先要打开文件,然后将文件指针所指向的文件内容发送到标准输出 int fpassthru ( resource $handle ) //把结果发送到一个数组中 array file ( string $filename [, int $flags = 0 [, resource $context ]] ) //一次读取一个字符 string fgetc ( resource $handle ) //读取任意长度字节的内容 string fread ( resource $handle , int $length ) //文件关闭 bool fclose ( resource $handle ) //文件操作中常用的函数 //检查文件或目录是否存在 bool file_exists ( string $filename ) //获取文件大小,返回文件大小的字节数 int filesize ( string $filename ) //删除文件 bool unlink ( string $filename [, resource $context ] ) //复位文件指针位置 bool rewind ( resource $handle ) //在文件指针中定位 int fseek ( resource $handle , int $offset [, int $whence = SEEK_SET ] ) |
函数的具体详细的说明在php.net上可以查到,下面练习一下文件的操作,练习名称为『简易日记』,需求如下:
(1)每日记录的内容以年-月-日.txt保存在数据目录下;
(2)首页写日记,并显示以往的记录;
(3)显示单页记录内容;
具体代码如下
首页(index.php)
代码如下 | 复制代码 |
我的日记本写日记 日记列表 $handler = opendir($_SERVER['DOCUMENT_ROOT'] . '/phpcodes/diarydatas/'); while (($diaryname = readdir($handler)) !== false) { if($diaryname != "." && $diaryname != ".." ) { $files[] = $diaryname; } } closedir($handler); foreach($files as $value) { echo "substr($value,0,(strlen($value)-4)) . ">$value" . " | "; } ?> |
保存处理页(diaryprocessed.php)
代码如下 | 复制代码 |
header('Content-Type:text/html; charset=utf-8'); $date = gmdate('Y-m-d', time() + 3600 * 8); $diarytopic = $_POST['diarytopic']; $diarycontents = $_POST['diarycontents']; $DOCUMENT_ROOT = $_SERVER['DOCUMENT_ROOT']; $output = $diarytopic . "n" . $diarycontents . "n"; $fp = fopen($DOCUMENT_ROOT . '/phpcodes/diarydatas/' . $date . '.txt', 'ab'); flock($fp,LOCK_EX); if(!$fp) { echo " 当前不能处理您提交的日志,请稍后再试! ";echo "返回"; } fwrite($fp,$output); flock($fp,LOCK_UN); fclose($fp); echo '日记提交成功!'; echo "返回"; |
查看内容页(viewdiary.php)
代码如下 | 复制代码 |
$DOCUMENT_ROOT = $_SERVER['DOCUMENT_ROOT']; 写日记 $diaryname = $_GET['id']; $filepath = $DOCUMENT_ROOT . '/phpcodes/diarydatas/' . $diaryname . '.txt'; if (file_exists($filepath)) { $fp = fopen($filepath, 'rb'); echo nl2br(fread($fp,filesize($filepath))); fclose($fp); } ?> |
相关文章
- 炉石传说血DK卡组怎么样 炉石传说血DK卡组推荐介绍 11-05
- 咒术回战幻影夜行官网在哪里 咒术回战幻影夜行官网地址介绍 11-05
- 蚂蚁庄园今天答题答案2024年10月26日 11-05
- 以闪亮之名变装物语甜趣篇怎么玩 11-05
- 闪耀暖暖永夜禁锢怎么玩 11-05
- 闪耀暖暖永夜禁锢怎么玩 闪耀暖暖永夜禁锢活动介绍 11-05