当前位置:首页 > PHP教程 > php数组 > 列表

php将数组变量保存到文件

发布:smiling 来源: PHP粉丝网  添加日期:2014-01-08 16:00:23 浏览: 评论:0 

最近要开发一个权限功能,我希望用户在后台选择设置好的权限会生成一个与用户对应的php文件,这样只要用户登录我就加载相对应的配置文件了,这里我们需要把用户设置的权限php数组保存到php文件中,下面我们来看实现函数:

  1. <?php  
  2. function CreatePropertyArray(){  
  3.     global $IP;  
  4.    
  5.     $content       = '';  
  6.     $industris     = array();  
  7.     $industry_tree = array();  
  8.    
  9.     $content .= "<?phpn";  
  10.    
  11.     //Industry  
  12.     $industries = getMasterPropertyValues('Industry');  
  13.     foreach($industries as $v){  
  14.         $industry_tree["$v"]= getSlavePropertyValues("Industry","Product Category"$v);  
  15.     }  
  16.    
  17.     $content .= '$Industries = '. var_export($industries,true) . ";n";  
  18.    
  19.     file_put_contents($IP . '/termwiki_array.php',$content,LOCK_EX);  
  20.    
  21. }  
  22. ?> 

Tags: php数组 变量 文件

分享到: