Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.86 KB | None | 0 0
  1. <?php
  2. $array = array(
  3.     'My business' => array(
  4.         'hours' => '9 a.m. to 5 p.m.',
  5.         'volume' => '100db',
  6.         'color' => 'black'
  7.     ),
  8.     'New Business' => array(
  9.         'hours' => '8 a.m. to 7 p.m.',
  10.         'volume' => '200db',
  11.         'color' => 'blue'
  12.     )
  13. );
  14.  
  15. echo json_encode( $array );
  16. //{"My business":{"hours":"9 a.m. to 5 p.m.","volume":"100db","color":"black"},"New Business":{"hours":"8 a.m. to 7 p.m.","volume":"200db","color":"blue"}}
  17.  
  18.  
  19.  
  20.  
  21. $array = json_decode( '{"My business":{"hours":"9 a.m. to 5 p.m.","volume":"100db","color":"black"},"New Business":{"hours":"8 a.m. to 7 p.m.","volume":"200db","color":"blue"}}' );
  22. print_r( $array );
  23.  
  24. Object (
  25.     [My business] => Object
  26.         (
  27.             [hours] => 9 a.m. to 5 p.m.
  28.             [volume] => 100db
  29.             [color] => black
  30.         )
  31.    
  32.     [New Business] => Object
  33.         (
  34.             [hours] => 8 a.m. to 7 p.m.
  35.             [volume] => 200db
  36.             [color] => blue
  37.         )
  38. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement