Heim  >  Artikel  >  Backend-Entwicklung  >  php将数组变量保存到文件_PHP教程

php将数组变量保存到文件_PHP教程

WBOY
WBOYOriginal
2016-07-13 10:43:40804Durchsuche

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

 代码如下 复制代码

function CreatePropertyArray(){
    global $IP;
 
    $content       = '';
    $industris     = array();
    $industry_tree = array();
 
    $content .= "  
    //Industry
    $industries = getMasterPropertyValues('Industry');
    foreach($industries as $v){
        $industry_tree["$v"]= getSlavePropertyValues("Industry","Product Category", $v);
    }
 
    $content .= '$Industries = '. var_export($industries,true) . ";n";
 
    file_put_contents($IP . '/termwiki_array.php',$content,LOCK_EX);
 
}
 
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/633147.htmlTechArticle最近要开发一个权限功能,我希望用户在后台选择设置好的权限会生成一个与用户对应的php文件,这样只要用户登录我就加载相对应的配置...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn