Viết PHP script để hiển thị các lỗi xảy ra trong quá trình decode JSON.

PHP script

Dưới đây là phần PHP code để giải bài tập PHP trên:

<html>
   
   <head>
      <title>Xử lý JSON trong PHP</title>
   </head>
   <body>
   
       <?php
        function json_error_message($json_str)  
		{  
		  $json[] = $json_str;  
		  echo $json;  
		  foreach ($json as $string)  
		  {  
		    echo 'Decoding: ' . $string."<br>";  
		    json_decode($string);  
		  
		    switch (json_last_error())  
		     {  
		       case JSON_ERROR_NONE:  
		         echo ' - No errors'."<br>";  
		         break;  
		       case JSON_ERROR_DEPTH:  
		         echo ' - Maximum stack depth exceeded'."<br>";  
		         break;  
		       case JSON_ERROR_STATE_MISMATCH:  
		         echo ' - Underflow or the modes mismatch'."<br>";  
		         break;  
		       case JSON_ERROR_CTRL_CHAR:  
		         echo ' - Unexpected control character found'."<br>";  
		         break;  
		       case JSON_ERROR_SYNTAX:  
		         echo ' - Syntax error, malformed JSON'."<br>";  
		         break;  
		       case JSON_ERROR_UTF8:  
		         echo ' - Malformed UTF-8 characters, possibly incorrectly encoded'."<br>";  
		         break;  
		       default:  
		         echo ' - Unknown error'."<br>";  
		         break;  
		      }  
		  }  
		}  
		json_error_message('{"color1": "Red Color"}');
       ?>
       
   </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ả:

Xử lý JSON trong PHP | Bài tập PHP có giải

Các bài Xử lý JSON trong PHP khác có trên s2sontech:




Bình luận (0)

Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Learning English Everyday