php将数组变量保存到文件

前端之家收集整理的这篇文章主要介绍了php将数组变量保存到文件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

最近要开发一个权限功能,我希望用户后台选择设置好的权限会生成一个与用户对应的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. ?> 

猜你在找的PHP相关文章