Home  >  Article  >  Backend Development  >  PHP parses JSON data

PHP parses JSON data

WBOY
WBOYOriginal
2016-07-25 08:42:41781browse
  1. $json_string='{"id":1,"name":"rolf","country":"russia","office":["google","oracle"]} ';
  2. $obj=json_decode($json_string);
  3. //print the parsed data
  4. echo $obj->name; //displays rolf
  5. echo $obj->office[0]; //displays google
复制代码

PHP, JSON


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn