网站地图    收藏   

主页 > php专栏 > php数组查询 >

php将数组变量保存到文件 - php数组

来源:自学PHP网    时间:2014-11-25 21:17 作者: 阅读:

[导读] 最近要开发一个权限功能,我希望用户在后台选择设置好的权限会生成一个与用户对应的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网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论