This article mainly introduces how to decompile php arrays to save text and text into arrays, two user-defined functions string2array and array2string are used to demonstrate the implementation of php array to save text and text decompressed into arrays, which has good reference value, if you need it, I can use this article to describe how to decompile the php array to save the text and text into arrays. Share it with you for your reference. The specific implementation method is as follows:
The following example defines two functions. string2array is used to convert strings into arrays, and array2string is used to convert arrays into strings.
The specific implementation code is as follows:
The code is as follows:
Function string2array ($ data ){
If ($ data = '') return array ();
@ Eval ("$ array = $ data;"); return $ array;
}
/** Convert an array to a string
* @ Param array $ data array
* @ Param bool $ isformdata if it is 0, new_stripslashes is not used for processing. optional. the default value is 1.
* String returns a string. if data is null, null is returned */
Function array2string ($ data, $ isformdata = 1 ){
If ($ data = '') return '';
If ($ isformdata) $ data = new_stripslashes ($ data );
Return addslashes (var_export ($ data, TRUE ));
}
I hope this article will help you with PHP programming.