[ create a new paste ] login | about

Link: http://codepad.org/Rh3tAKnZ    [ raw code | output | fork ]

PHP, pasted on Aug 10:
1
2
3
4
5
6
7
8
9
10
<?php
$a = '{"":{}}';
$b = json_encode(json_decode($a, true));
$c = json_encode(json_decode($a, false));

echo "
Want $a
Get  $b
or   $c
";


Output:
1
2
3
4

Want {"":{}}
Get  {"":[]}
or   {"_empty_":{}}


Create a new paste based on this one


Comments: