blob: 06aba555f0c5a63a71a174c2494f65f6d7712170 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
--TEST--
Allow JSON_OBJECT_AS_ARRAY to have an effect
--FILE--
<?php
$json = '{"foo":"bar"}';
var_dump(json_decode($json, false));
var_dump(json_decode($json, true));
var_dump(json_decode($json, null, 512, 0));
var_dump(json_decode($json, null, 512, JSON_OBJECT_AS_ARRAY));
--EXPECTF--
object(stdClass)#%d (1) {
["foo"]=>
string(3) "bar"
}
array(1) {
["foo"]=>
string(3) "bar"
}
object(stdClass)#%d (1) {
["foo"]=>
string(3) "bar"
}
array(1) {
["foo"]=>
string(3) "bar"
}
|