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

最模板

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

php将数组变量保存到文件

时间:2014-06-09 16:40来源: 作者: 点击:
最近要开发一个权限功能,我希望用户在后台选择设置好的权限会生成一个与用户对应的php文件,这样只要用户登录我就加载相对应的配置文件了,这里我们需要把用户设置的权限php数组保存到p

最近要开发一个权限功能,我希望用户在后台选择设置好的权限会生成一个与用户对应的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. ?> 
(责任编辑:admin)
------分隔线----------------------------
栏目列表
推荐内容