php将数组变量保存到文件

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

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