PHP saves array variables to file _php tutorial

Source: Internet
Author: User
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 ...

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.