-4

如何使用 foreach 创建这样的数组

$data = array(
    (object)array(
        'oV' => 'myfirstvalue',
        'oT' => 'myfirsttext',
    ),
    (object)array(
        'oV' => 'mysecondvalue',
        'oT' => 'mysecondtext',
    ),
);
4

1 回答 1

6
// Create the array
$data = [];

foreach($someList as $something)
{
    // Assign each value to the array as you cycle through the other collection.
    $data[] = $something;
}

脑海中浮现的东西

Foreach 用于循环遍历集合。如果您已经有一个包含所有这些项目的集合,那么为什么要将它重新分配给一个数组?

于 2013-04-26T18:32:50.623 回答