php 怎么把数组写到文件里面还是数组
答案:3 悬赏:50 手机版
解决时间 2021-11-12 13:22
- 提问者网友:遁入空寂
- 2021-11-12 08:15
php 怎么把数组写到文件里面还是数组
最佳答案
- 五星知识达人网友:煞尾
- 2021-11-12 09:48
假设数组变量是$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));
试试看吧
全部回答
- 1楼网友:荒野風
- 2021-11-12 11:39
可以用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);
- 2楼网友:佘樂
- 2021-11-12 10:14
$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, '
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, '
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯