您好,欢迎访问一九零五行业门户网

PHP把数组写入文件_PHP教程

php把数组写入文件
php把数组写入文件,通过序列和反序列实现。请看代码$file=./data/file.cache;file_put_contents($file,serialize($array));//写入缓存
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); 
?>
http://www.bkjia.com/phpjc/508435.htmlwww.bkjia.comtruehttp://www.bkjia.com/phpjc/508435.htmltecharticlephp把数组写入文件 php把数组写入文件,通过序列和反序列实现。请看代码$file=./data/file.cache;file_put_contents($file,serialize($array));//写入缓存 ?...
其它类似信息

推荐信息