Recently to develop a permission function, I hope that users in the background to choose a set of permissions will generate a PHP file corresponding to the user, so as long as the user login I will load the corresponding configuration file, here we need to set the user permissions PHP array to the PHP file, let us look at the implementation of the function
| The code is as follows |
Copy Code |
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);
}
?> |
http://www.bkjia.com/PHPjc/633147.html www.bkjia.com true http://www.bkjia.com/PHPjc/633147.html techarticle recently to develop a permission function, I want users in the background to choose a set of permissions will generate a PHP file corresponding to the user, so long as the user login I will load the corresponding configuration ...