1.
if(false!==fopen('./allcategory.txt','w+')){
file_put_contents('./allcategory.txt',serialize($data));//写入数组序列化缓存
}
2.
$cacheArray=unserialize(file_get_contents('./allcategory.txt')); //读取数组序列化缓存数据
1.
if(false!==fopen('./allcategory.txt','w+')){
file_put_contents('./allcategory.txt',serialize($data));//写入数组序列化缓存
}
2.
$cacheArray=unserialize(file_get_contents('./allcategory.txt')); //读取数组序列化缓存数据