PHP - json_decode() 函数



json_decode() 函数可以解码 JSON 字符串。

语法

mixed json_decode( string $json [, bool $assoc = false [, int $depth = 512 [, int $options = 0 ]]] )

json_decode() 函数可以接收一个 JSON 编码的字符串并将其转换为 PHP 变量。

json_decode() 函数可以将 JSON 中编码的值返回为相应的 PHP 类型。值 true、false 和 null 分别返回 TRUE、FALSE 和 NULL。如果无法解码 JSON 或编码数据深度超过递归限制,则返回 NULL。

示例 1

<?php 
   $jsonData= '[
                  {"name":"Raja", "city":"Hyderabad", "state":"Telangana"}, 
                  {"name":"Adithya", "city":"Pune", "state":"Maharastra"},
                  {"name":"Jai", "city":"Secunderabad", "state":"Telangana"}
               ]';

   $people= json_decode($jsonData, true);
   $count= count($people);

   // Access any person who lives in Telangana
   for ($i=0; $i < $count; $i++) { 
      if($people[$i]["state"] == "Telangana") {
         echo $people[$i]["name"] . "\n";
         echo $people[$i]["city"] . "\n";
         echo $people[$i]["state"] . "\n\n";
      }
   }
?>

输出

Raja
Hyderabad
Telangana

Jai
Secunderabad
Telangana

示例 2

<?php
   // Assign a JSON object to a variable
   $someJSON = '{"name" : "Raja", "Adithya" : "Jai"}';
 
   // Convert the JSON to an associative array
   $someArray = json_decode($someJSON, true);
 
   // Read the elements of the associative array
   foreach($someArray as $key => $value) {
      echo "[" . $key . "][" . $value . "]";
   }
?>

输出

[name][Raja][Adithya][Jai]
php_function_reference.htm
广告