Php implementation code for saving arrays to files _ PHP Tutorial-php Tutorial

Source: Internet
Author: User
Php implements code for saving arrays to files. The first time I shared the code, php arrays were very powerful, and some data was directly written to files without being stored in the database. (In reality, the first time I shared the code; (the code was poorly written)
Php arrays are very powerful. some data is directly written to files without being stored in the database, and require is used directly.
(The function of storing arrays in files is actually used, but the shared code is a little different from the actual application)

The code is as follows:


Function cacheArr (& $ data ){
If (! $ Data) throw new Exception ('Array cannot be blank ');
Foreach ($ GLOBALS as $ key => $ value ){
$ Str = $ GLOBALS [$ key];
$ GLOBALS [$ key] = 'changed ';
If ($ data = 'changed '){
$ StrName = $ key;
Break;
}
$ GLOBALS [$ key] = $ str;
}
Ob_clean ();
Ob_start ();
Echo" Function echoArr ($ arr, $ arrName ){
$ ArrCount = count ($ arr); $ I = 0;
Foreach ($ arr as $ key => $ value ){
++ $ I;
If (is_array ($ value )){
Echo "\ n". (is_numeric ($ key )? $ Key: '\ ''. $ key.' \''). '=> array (';
EchoArr ($ value, $ arrName. (is_numeric ($ key )? '['. $ Key. ']': '[\'. $ key. '\'] ');
If ($ I! = $ ArrCount) echo '),';
Else echo ')';
Continue;
}
If ($ I! = $ ArrCount) echo (is_numeric ($ key ))? $ Key: '\ ''. $ key.' \''). '=>'. (is_numeric ($ value )? $ Value: '\ ''. $ value .'\'').',';
Else echo (is_numeric ($ key ))? $ Key: '\ ''. $ key.' \''). '=>'. (is_numeric ($ value )? $ Value: '\ ''. $ value .'\'');
}
}
Echo '$'. $ strName. '= array (';
EchoArr ($ data ,'');
Echo ');';
Echo "\ n?> ";
$ File = fopen ($ strName. '. arr. php', 'w ');
Fwrite ($ file, ob_get_contents ());
Fclose ($ file );
Ob_clean ();
Return true;
}
?>
// Storage array
$ Hello = array (1 => 'test', 2 => array ('hello123 '));
CacheArr ($ hello );
Unset ($ hello );
// Read the array
Require 'Hello. arr. php ';
Print_r ($ hello );
?>


Pay attention to variable issues during testing. Including defined global variables

The arrays in php are very powerful. some data is directly written to files without being stored in the database, and require is used directly. (Actually...

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.