|
var_export输出:
$set=array (
0 =>
array (
'id' => '25',
'key' => 'test123',
'value' => '我的大学',
'group' => 'addon',
'autoload' => 'no',
'type' => 'input',
),
1 =>
array (
'id' => '26',
'key' => 'ispo',
'value' => 'ispo123',
'group' => 'addon',
'autoload' => 'no',
'type' => 'input',
),
);
print_r输出:
$set=Array
(
[0] => Array
(
[id] => 25
[key] => test123
[value] => 我的大学
[group] => addon
[autoload] => no
[type] => input
)
[1] => Array
(
[id] => 26
[key] => ispo
[value] => ispo123
[group] => addon
[autoload] => no
[type] => input
)
);
求指点其区别和如何应用?
|
|