最模板 - 外贸网站建设,外贸网站模板

最模板

当前位置: 首页 > 建站教程 > php教程 >

php入门教程之文件操作基础

时间:2014-06-09 16:40来源: 作者: 点击:
在有些场合中需要以文件的形式来对内容进行存储,通常这时候需要对文件进行一系列的操作,PHP中对于文件的操作跟其他计算机程序设计语言对文件的操作类似,对于文件的操作主要包括三个部

在有些场合中需要以文件的形式来对内容进行存储,通常这时候需要对文件进行一系列的操作,PHP中对于文件的操作跟其他计算机程序设计语言对文件的操作类似,对于文件的操作主要包括三个部分,以及围绕这三部分提供的辅助性函数来完成文件操作的工作.

(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,分别表示以二进制读文件及以二进制向文件追加内容

//在文件打开操作过程中出现错误请首先检查文件所在的路径的权限设置

 

实例代码如下:

  1. //文件操作函数 
  2.  
  3. //写操作相关函数 
  4. //把$string的内容写到文件指针$handle 
  5. int fwrite ( resource $handle , string $string [, int $length ] )   
  6. //函数是fwrite的别名函数 
  7. fputs()  
  8.  
  9. //也能完成写操作,不同的是集成了fopen(),fwrite(),fclose(),使用该函数不用再打开关闭文件 
  10. int file_put_contents ( string $filename , mixed $data [, int $flags = 0 [, resource $context ]] )  
  11.  
  12. //读操作相关函数 
  13. //逐行读取 
  14. string fgets ( resource $handle [, int $length ] )  
  15. //逐行读,能够过滤标记 
  16. string fgetss ( resource $handle [, int $length [, string $allowable_tags ]] )  
  17. //逐行读,能够根据定界符输出到数组 
  18. array fgetcsv ( resource $handle [, int $length = 0 [, string $delimiter = ',' [, string $enclosure = '"' [, string $escape = '\' ]]]] ) 
  19. //一次性读取一个文件并将文件内容发送到标准输出,包含了文件打开与文件关闭操作 
  20. int readfile ( string $filename [, bool $use_include_path = false [, resource $context ]] ) 
  21. //先要打开文件,然后将文件指针所指向的文件内容发送到标准输出 
  22. int fpassthru ( resource $handle ) 
  23. //把结果发送到一个数组中 
  24. array file ( string $filename [, int $flags = 0 [, resource $context ]] ) 
  25. //一次读取一个字符 
  26. string fgetc ( resource $handle ) 
  27. //读取任意长度字节的内容 
  28. string fread ( resource $handle , int $length ) 
  29.  
  30. //文件关闭 
  31. bool fclose ( resource $handle ) 
  32.  
  33. //文件操作中常用的函数 
  34. //检查文件或目录是否存在 
  35. bool file_exists ( string $filename ) 
  36. //获取文件大小,返回文件大小的字节数 
  37. int filesize ( string $filename ) 
  38. //删除文件 
  39. bool unlink ( string $filename [, resource $context ] ) 
  40. //复位文件指针位置 
  41. bool rewind ( resource $handle ) 
  42. //在文件指针中定位 
  43. int fseek ( resource $handle , int $offset [, int $whence = SEEK_SET ] ) 

函数的具体详细的说明在php.net上可以查到,下面练习一下文件的操作,练习名称为『简易日记』,需求如下:

(1)每日记录的内容以年-月-日.txt保存在数据目录下;

(2)首页写日记,并显示以往的记录;

(3)显示单页记录内容;

首页(index.php)实例代码如下:

  1. <!DOCTYPE html> 
  2. <html> 
  3.   <head> 
  4.     <meta charset="utf-8"
  5.     <title>简易日记--php文件操作练习</title> 
  6.     <style> 
  7.       h1 { 
  8.          font-size:24px; 
  9.          border-bottom:1px solid #000; 
  10.          line-height:40px; 
  11.       } 
  12.       .active { 
  13.          line-height:22px; 
  14.          font-size:14px; 
  15.          background:#2cf; 
  16.          padding:8px; 
  17.          text-decoration:none; 
  18.       } 
  19.       .btn { 
  20.          width:100px; 
  21.          height:40px; 
  22.       } 
  23.     </style> 
  24.   </head> 
  25.   <body> 
  26.     <h1>我的日记本</h1> 
  27.     <p><span class="active">写日记</span></p> 
  28.     <form name="writediary" method="POST" action="diaryprocessed.php"
  29.       <p>日记主题</p> 
  30.       <input type="text" name="diarytopic" size="60" maxlength="100" /> 
  31.       <p>日记内容</p> 
  32.       <textarea name="diarycontents" rows="10" cols="53"></textarea> 
  33.       <p><input  class="btn" type="submit" name="save" value="保存" /></p> 
  34.     </form> 
  35.     <hr> 
  36.     <p><span class="active">日记列表</span> </p> 
  37.     <hr> 
  38.     <?php 
  39.       $handler = opendir($_SERVER['DOCUMENT_ROOT'] . '/phpcodes/diarydatas/'); 
  40.       while (($diaryname = readdir($handler)) !== false) { 
  41.         if($diaryname != "." && $diaryname != ".." ) { 
  42.           $files[] = $diaryname
  43.         } 
  44.       } 
  45.       closedir($handler); 
  46.       foreach($files as $value) { 
  47.         echo "<a href=viewdiary.php?id=" . substr($value,0,(strlen($value)-4)) . ">$value</a>" . " | "
  48.       } 
  49.     ?> 
  50.   </body> 
  51. </html> 
  52.  
  53. 保存处理页(diaryprocessed.php) 
  54.  代码如下 复制代码 
  55. <?php 
  56. header('Content-Type:text/html; charset=utf-8'); 
  57.  
  58. $date = gmdate('Y-m-d', time() + 3600 * 8); 
  59.  
  60. $diarytopic = $_POST['diarytopic']; 
  61.  
  62. $diarycontents = $_POST['diarycontents']; 
  63.  
  64. $DOCUMENT_ROOT = $_SERVER['DOCUMENT_ROOT']; 
  65.  
  66. $output = $diarytopic . "n" . $diarycontents . "n"
  67.  
  68. $fp = fopen($DOCUMENT_ROOT . '/phpcodes/diarydatas/' . $date . '.txt''ab'); 
  69.  
  70. flock($fp,LOCK_EX); 
  71.  
  72. if(!$fp) { 
  73.   echo "<p><strong>当前不能处理您提交的日志,请稍后再试!</strong></p>"
  74.   echo "<a href="index.htm">返回</a>"
  75.  
  76. fwrite($fp,$output); 
  77.  
  78. flock($fp,LOCK_UN); 
  79.  
  80. fclose($fp); 
  81.  
  82. echo '日记提交成功!'
  83. echo "<a href="index.htm">返回</a>"
  84.  
  85. 查看内容页(viewdiary.php) 
  86.  代码如下 复制代码 
  87. <?php 
  88.   $DOCUMENT_ROOT = $_SERVER['DOCUMENT_ROOT']; 
  89. ?> 
  90. <!DOCTYPE html> 
  91. <html> 
  92.   <head> 
  93.     <meta charset="utf-8"
  94.     <title>简易日记</title> 
  95.     <style> 
  96.       * { line-height: 32px; } 
  97.     </style> 
  98.   </head> 
  99.   <body> 
  100.     <a href="index.php">写日记</a> 
  101.     <hr> 
  102.     <?php 
  103.       $diaryname = $_GET['id']; 
  104.       $filepath = $DOCUMENT_ROOT . '/phpcodes/diarydatas/' . $diaryname . '.txt'
  105.       if (file_exists($filepath)) { 
  106.         $fp = fopen($filepath'rb'); 
  107.         echo nl2br(fread($fp,filesize($filepath))); 
  108.         fclose($fp); 
  109.       } 
  110.     ?> 
  111.   </body> 
  112. </html> 
(责任编辑:admin)
------分隔线----------------------------
栏目列表
推荐内容