首頁  >  文章  >  後端開發  >  PHP把数组写入文件_PHP教程

PHP把数组写入文件_PHP教程

WBOY
WBOY原創
2016-07-13 17:34:46900瀏覽

php把数组写入文件

php把数组写入文件,通过序列和反序列实现。请看代码$file="./data/file.cache";file_put_contents($file,serialize($array));//写入缓存

$file="./data/file.cache"; 
 
$array = array("count" => "3000", 
 
               "num"  =>"300"); 
 
//缓存 
 
file_put_contents($file,serialize($array));//写入缓存 
?> 
 
$file="./data/file.cache"; 
$handle = fopen($file, "r"); 
$cacheArray = unserialize(fread($handle, filesize ($file))); 
print_r($cacheArray); 
?>  
 

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/508435.htmlTechArticlephp把数组写入文件 php把数组写入文件,通过序列和反序列实现。请看代码$file=./data/file.cache;file_put_contents($file,serialize($array));//写入缓存 ?...
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn