fork download
  1. <?php
  2.  
  3. var_dump(json_decode('{ "phone": [ "123", "456", "789"]}', true));
  4.  
Success #stdin #stdout 0.02s 24400KB
stdin
Standard input is empty
stdout
array(1) {
  ["phone"]=>
  array(3) {
    [0]=>
    string(3) "123"
    [1]=>
    string(3) "456"
    [2]=>
    string(3) "789"
  }
}