php JSON String into Array或Object

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php JSON String into Array或Object相关的知识,希望对你有一定的参考价值。

<?php
  // JSON string
  $someJSON = '[{"name":"Jonathan Suh","gender":"male"},{"name":"William Philbin","gender":"male"},{"name":"Allison McKinnery","gender":"female"}]';

  // Convert JSON string to Array
  $someArray = json_decode($someJSON, true);
  print_r($someArray);        // Dump all data of the Array
  echo $someArray[0]["name"]; // Access Array data

  // Convert JSON string to Object
  $someObject = json_decode($someJSON);
  print_r($someObject);      // Dump all data of the Object
  echo $someObject[0]->name; // Access Object data
?>

以上是关于php JSON String into Array或Object的主要内容,如果未能解决你的问题,请参考以下文章

php-foreach遍历数组

PHP数组调试

PHP学习记录

MySQL常用Json函数

php 正则表达示中的原子

php json_encode后的json里面的int类型变成string类型