[ create a new paste ] login | about

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

PHP, pasted on Oct 20:
1
2
3
4
5
6
7
8
<?php

$c = '["483","482"]';

echo "<pre>";
print_r (json_decode($c,TRUE));

?>


Output:
1
2
3
4
5
<pre>Array
(
    [0] => 483
    [1] => 482
)


Create a new paste based on this one


Comments: