php写入和读取json文件demo

2015-11-8 Jon 其他

1、php创建并写入json文件
<?php
  header('Content-type: text/json');
  $fruits = array (
      "fruits"  => array("a" => "orange", "b" => "banana", "c" => "apple"),
      "numbers" => array(1, 2, 3, 4, 5, 6),
      "holes"   => array("first", 5 => "second", "third")
  );
  // 创建 转化 写入
  file_put_contents('data.json',json_encode($fruits));
?>

2、php读取json文件
<?php
  // 读取json
  $json_string = file_get_contents('data.json');
  // 转化为数组
  $data = json_decode($json_string, true);
  // 输出
  var_dump($data);
?>

标签: php json

分享这篇文章
赞助鼓励:如果觉得内容对您有所帮助,您可以支付宝(左)或微信(右):

声明:如无特殊注明,所有博客文章版权皆属于作者,转载使用时请注明出处。谢谢!

发表评论:

皖ICP备15010162号-1 ©2015-2022 知向前端
qq:1614245331 邮箱:13515678147@163.com Powered by emlog sitemap