本篇文章主要介紹php將數組儲存為文字檔的三種方法,感興趣的朋友參考下,希望對大家有所協助。
(1)利用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)));
(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="<?php\r\n".'$'.$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)利用 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 '建立失敗'; }
總結:以上就是本篇文的全部內容,希望能對大家的學習有所協助。