php 緩存數組形式的變量,實際上就是將 php 將數組寫入到一個文本文件或者後綴名為 .php 存儲起來,使用的時候直接調用這個文件。
那麼如何使用 php 將數組保存為文本格式的文件呢?
下面分享三種方法實現將 php 數組寫入到文件以緩存數組。
(1)利用 var_export 將數組直接保存為數組形式存儲到文本文件中
<?php
$file='./cache/phone.php';
$array=array('color'=> array('blue','red','green'),'size'=> array('small','medium','large'));
//緩存
$text='<?php $rows='.var_export($array,true).';';
if(false!==fopen($file,'w+')){
file_put_contents($file,$text);
}else{
echo '創建失敗';
}
(2)自創的將數組保存為標准的數組格式,雖然保存時復雜了點但是調用時簡單
<?php
$file='./cache/phone.php';
$array=array('color'=> array('blue','red','green'),'size'=> array('small','medium','large'));
cache_write($file,$array,'rows',false);
//寫入
function cache_write($filename,$values,$var='rows',$format=false){
$cachefile=$filename;
$cachetext="<?phprn".'$'.$var.'='.arrayeval($values,$format).";";
return writefile($cachefile,$cachetext);
}
//數組轉換成字串
function arrayeval($array,$format=false,$level=0){
$space=$line='';
if(!$format){
for($i=0;$i<=$level;$i++){
$space.="t";
}
$line="n";
}
$evaluate='Array'.$line.$space.'('.$line;
$comma=$space;
foreach($array as $key=> $val){
$key=is_string($key)?'''.addcslashes($key,''\').''':$key;
$val=!is_array($val)&&(!preg_match('/^-?d+$/',$val)||strlen($val) > 12)?'''.addcslashes($val,''\').''':$val;
if(is_array($val)){
$evaluate.=$comma.$key.'=>'.arrayeval($val,$format,$level+1);
}else{
$evaluate.=$comma.$key.'=>'.$val;
}
$comma=','.$line.$space;
}
$evaluate.=$line.$space.')';
return $evaluate;
}
//寫入文件
function writefile($filename,$writetext,$openmod='w'){
if(false!==$fp=fopen($filename,$openmod)){
flock($fp,2);
fwrite($fp,$writetext);
fclose($fp);
return true;
}else{
return false;
}
}
(3)利用 serialize 將數組序列化存儲為文本文件,調用時候再使用 unserialize 還原
<?php
$file='./cache/phone.php';
$array=array('color'=> array('blue','red','green'),'size'=> array('small','medium','large'));
//緩存
if(false!==fopen($file,'w+')){
file_put_contents($file,serialize($array));//寫入緩存
}
//讀出緩存
$handle=fopen($file,'r');
$cacheArray=unserialize(fread($handle,filesize($file)));
*