View difference between Paste ID: BgckJdaS and AcsCcmzw
SHOW: | | - or go back to the newest paste.
1
<?php
2
 $var=array(
3
 	'users' => array()
4
 );
5
6
 $b = array(
7
 	new StdClass,
8
 	new StdClass,
9
 	new StdClass,
10
 	new StdClass
11
 );
12
13
foreach ( $b as $a ) 
14
{
15
	$var['users'][] = $a;
16
}
17
18-
echo json_encode($var);
18+
echo json_encode($var);
19
20
//{"users":[{},{},{},{}]}