首页 > 语言 > PHP > 正文

php中数组写入文件方法

2024-09-04 11:46:22
字体:
来源:转载
供稿:网友

在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.  }//开源代码Vevb.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.  } 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表