程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> php中數組寫入文件方法

php中數組寫入文件方法

編輯:PHP綜合

在php中為我們提供了一個函數var_export 他可以直接將PHP代碼入到一個文件中,代碼如下:

  1. var_export($times,true);//後面不加true不能寫入文件喲 
  2. $fp = fopen('aa.txt','w+'); 
  3. fwrite($fp,var_export($times,true)); 
  4. fclose($fp); 

方法二,利用serializ與unserialize函數,代碼如下:

  1. if(isset($_POST['sub'])){     
  2.  $cfg = array('contact'=>$_POST['contact']); //把數據存入數組    
  3.  file_put_contents('./data/contact.cache',serialize($cfg)); 
  4.         //把數組序列化之後,寫到contact.cache裡, 
  5.  $this->redirect('other/contact');//跳轉 
  6.  }//開源代碼PHPfensi.com 
  7.  else{ 
  8.  $fp = fopen('./data/contact.cache','r');//讀 
  9.  $cf = unserialize(fread($fp,filesize('./data/contact.cache')));//反序列化,並賦值 
  10.  $this->assign('cfg',$cf);//送到前台模板 
  11.  $this->display('other/contact'); 
  12.  } 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved