Guest User

Untitled

a guest
Aug 24th, 2017
344
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. <html>
  2.  
  3. <head>
  4. <title>parse json</title>
  5. </head>
  6.  
  7. <body>
  8.  
  9. <?php
  10.  
  11. $json = '[{"status":"ok","address":"tw","user":{"tel":"0911123456"}}]';
  12.  
  13. $ResultArray = json_decode($json,true);
  14.  
  15. foreach($ResultArray as $arr) {
  16.   print $arr['status'];
  17.   print "<br>";
  18.   print $arr['address'];
  19.   print "<br>";
  20.   print $arr['user']['tel'];
  21.   print "<br>";
  22. }
  23.  
  24. ?>
  25.  
  26. </body>
  27.  
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment