Guest User

Untitled

a guest
Oct 21st, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. var_dump(json_decode(json_encode(["0"=>"One", "1"=>"Two", "2"=>"Three"])));
  2.  
  3. array(3) {
  4. [0]=>
  5. string(3) "One"
  6. [1]=>
  7. string(3) "Two"
  8. [2]=>
  9. string(5) "Three"
  10. }
  11.  
  12. var_dump(json_decode(json_encode(["1"=>"One", "2"=>"Two", "3"=>"Three"])));
  13.  
  14. object(stdClass)#1 (3) {
  15. ["1"]=>
  16. string(3) "One"
  17. ["2"]=>
  18. string(3) "Two"
  19. ["3"]=>
  20. string(5) "Three"
  21. }
  22.  
  23. var_dump(json_decode(json_encode(["One", "Two", "Three"])));
  24.  
  25. array(3) {
  26. [0]=>
  27. string(3) "One"
  28. [1]=>
  29. string(3) "Two"
  30. [2]=>
  31. string(5) "Three"
  32. }
Add Comment
Please, Sign In to add comment