php 怎么把数组写到文件里面还是数组
3个回答
展开全部
假设数组变量是$arr
方法1:转换成json
file_put_contents($filepath, json_encode($arr));
方法2:;
file_put_contents($filepath, print_r($arr, true));
试试看吧
方法1:转换成json
file_put_contents($filepath, json_encode($arr));
方法2:;
file_put_contents($filepath, print_r($arr, true));
试试看吧
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
$arr1 = array ('a'=>1,'b'=>2,'c'=>3,'d'=>4,'e'=>5);
file_put_contents("array.json",json_encode($arr1));
# array.json => {"a":1,"b":2,"c":3,"d":4,"e":5}
$arr2 = json_decode(file_get_contents('array.json'), true);
$arr1 === $arr2 # => true
OR:
file_put_contents($filename, '<?php $arr = ' . var_export($arr, true) . ';');
file_put_contents("array.json",json_encode($arr1));
# array.json => {"a":1,"b":2,"c":3,"d":4,"e":5}
$arr2 = json_decode(file_get_contents('array.json'), true);
$arr1 === $arr2 # => true
OR:
file_put_contents($filename, '<?php $arr = ' . var_export($arr, true) . ';');
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
可以用json类型 字符串 放进去 取出来 再转换成json
存入 $datas = json_encode($data) file_put_contents($datas);
取出 $json = file_get_contents(./$file) $array = json_decode($json,true);
存入 $datas = json_encode($data) file_put_contents($datas);
取出 $json = file_get_contents(./$file) $array = json_decode($json,true);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询