如何将数组的所有键的值填充到特定值?

时间:2015-12-13 22:57:06

标签: php arrays json

这是我的代码:

$api_arr  =  array();
$iterator = 0;
while (($end = $sth->fetch()) && $iterator < 10)
{
    $api_arr["data"]['one']   =  $end["col1"];
    $api_arr["data"]['two']   =  $end["col2"];
    $api_arr["data"]['three'] =  $end["col3"];
    $iterator ++;
}

此处还有我的JSON输出:(当有结果时)

{
   -data: {
       one:   'anything',
       two:   'anything',
       three: 'anything
   }
}

这是我的JSON输出:(当没有结果时)

[]

现在,我想要的是在没有任何结果的情况下将所有键的值填充到false。怎么样?

这样的事情:

{
   -data: {
       one:   false,
       two:   false,
       three: false
   }
}

0 个答案:

没有答案