VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • php 写入和读取文件函数

  1. //读取文件函数  
  2. <?  
  3. function readfromfile($file_name) {  
  4. if (file_exists($file_name)) { 
  5.  
  6. $filenum=fopen($file_name,"r");  
  7. flock($filenum,lock_ex);  
  8. $file_data=fread($filenumfilesize($file_name));  
  9. rewind($filenum); //osphp.com.cn  
  10. fclose($filenum);  
  11. return $file_data;  
  12. }  
  13. }  
  14. ?> 
  15. //写入文件函数  
  16. <?  
  17. function writetofile($file_name,$data,$method="w") {  
  18. $filenum=fopen($file_name,$method); 
  19.  
  20. flock($filenum,lock_ex);  
  21. $file_data=fwrite($filenum,$data);  
  22. fclose($filenum);  
  23. return $file_data;  
  24. }  
  25. ?> 
出处:http://www.phpfensi.com/php/20140526/3108.html

相关教程