復制代碼 代碼如下:
<?php
// http://www.jb51.net/article/23093.htm
function set_cache($name, $value) {
// 設置相對或者絕對目錄,末尾不要加 "/"
$cache_dir = "./cache";
// 設置擴展名
$cache_extension = ".php";
$cache_str_begin = "<?php\n//Cache Created at: " . date ( "Y-m-d H:i:s" ) . "\n";
if (! is_array ( $value )) {
$cache_str_middle = "\$$name = \"$value\";";
} else {
$cache_str_middle = "\$$name = " . arrayeval ( $value ) . ";";
}
$cache_str_end = "\n?>";
$cache_str = $cache_str_begin . $cache_str_middle . $cache_str_end;
// 緩存文件路徑
$cache_file = "$cache_dir/$name$cache_extension";
if ($fp = @fopen ( $cache_file, "wb" )) {
fwrite ( $fp, $cache_str );
fclose ( $fp );
return true;
} else {
echo $cache_file;
exit ( "Can not write to cache files, please check cache directory " );
return false;
}
}
// 將array變成字符串, 來自discuz!
function arrayeval($array, $level = 0) {
if (! is_array ( $array )) {
return "\"$array\"";
}
$space = "";
for($i = 0; $i <= $level; $i ++) {
$space .= "\t";
}
$evaluate = "Array\n$space(\n";
$comma = $space;
if (is_array ( $array )) {
foreach ( $array as $key => $val ) {
$key = is_string ( $key ) ? "\"" . addcslashes ( $key, "\"\\" ) . "\"" : $key;
$val = ! is_array ( $val ) && (! preg_match ( "/^\-?[1-9]\d*$/", $val ) || strlen ( $val ) > 12) ? "\"" . addcslashes ( $val, "\"\\" ) . "\"" : $val;
if (is_array ( $val )) {
$evaluate .= "$comma$key => " . arrayeval ( $val, $level + 1 );
} else {
$evaluate .= "$comma$key => $val";
}
$comma = ",\n$space";
}
}
$evaluate .= "\n$space)";
return $evaluate;
}
$test_array = array (
"6b" => "a\\",
"b",
"c",
array (
"c",
"d"
)
);
$fileAndVarName = "newFile";
// 在生成$encode_str的時候,為使字符串中原有字符格式不變,系統在編譯時會給字符串中預定義字符前加 \ 使預定義字符保留在字符串中,但輸出或打印字符串的時候只會輸出打印出預定義字符,不會打印出預定義字符前面的 \
$encode_str = json_encode ( $test_array );
// 因為這裡要把字符串打印成PHP代碼,輸出的時候,字符串中預定義字符會打亂程序運行,所以要在原有轉義字符前再加轉移字符,使字符串輸出打印時在預定義字符前轉義字符也能輸出
$addslashes_str = addslashes ( $encode_str ); // addslashes將字符串中預定義字符前加 \ 使其能存放在字符串中不產生作用,不參與程序運行
echo stripslashes($addslashes_str); // 反轉義函數,可去掉字符串中的反斜線字符。若是連續二個反斜線,則去掉一個,留下一個。若只有一個反斜線,就直接去掉。
echo "<br>";
// 可以傳數組對象,也可以傳轉換成json的字符串,轉換成json字符串,使用時需要再轉換成數組
set_cache ( "$fileAndVarName", $addslashes_str );
var_dump ( $addslashes_str );
echo "<br/>";
include_once "./cache/$fileAndVarName.php";
var_dump ( $$fileAndVarName );
echo "<br/>";
$decode_arr = ( array ) json_decode ( $$fileAndVarName );
var_dump ( $decode_arr );
echo "<br/>";
// 緩存另一種方法,用serialize把數組序列號成字符串,存放在任意擴展名文件中,使用時用fopen打開讀取其中字符串內容,再用unserialize反序列化成原數據
$serialize_str = serialize ( $test_array );
echo $serialize_str; // 這個就是描述過的數組但在這裡是一個字符串而已
echo "<br/>";
$unserialize_str = unserialize ( $serialize_str ); // 把描述過的數據恢復
var_dump($unserialize_str); //還原成為 $test_array ,數組結構並沒有丟失。
?>