728x90 AdSpace

Latest News
Sunday, February 11, 2018

Viết PHP script để decode một chuỗi JSON.

Dưới đây là phần PHP code để giải bài tập decode một JSON string trong PHP:
<html>
   
   <head>
      <title>Decode JSON string trong PHP</title>
   </head>
   <body>
   
       <?php
        function ham_xu_ly($value,$key)  
  {  
    echo "$key : $value"."<br>";  
  }  
  $a = '{"Truong": "Dai Hoc Bon Ba",  
  "Khoa": "Tieng Lao nang cao",  
  "Nganh":  
  {   
    "Nganh 1": "Ngu Phap tieng Lao",
    "Nganh 2": "Giao tiep tieng Lao"
  }  
    }';  
  $j1 = json_decode($a,true);  
  array_walk_recursive($j1,"ham_xu_ly");
       ?>
       
   </body>
</html>

Kết quả

Lưu PHP code trên trong một file có tên là test.php trong htdocs, sau đó mở trình duyệt và gõ địa chỉ http://localhost:8080/test.php sẽ cho kết quả:

  • Blogger Comments
  • Facebook Comments

0 comments:

Post a Comment

Item Reviewed: Viết PHP script để decode một chuỗi JSON. Rating: 5 Reviewed By: Genm