4

我是 PHP 新手。只是一个简单的问题:

编码:

foreach($group as $b)
{
  if($b == 0){
       echo "error";
  }
  else{
        echo "true";
  }
}

我想要将“true”添加到新数组的值 $b。

谢谢。

4

5 回答 5

7
$arr = array();
foreach($group as $b) {
    if ($b == 0) {
        echo "error";
    } else {
        echo "true";
        $arr[] = $b;
    }
}
于 2012-07-11T04:54:27.427 回答
2

只需使用array_push().

array_push($array, "true");
于 2012-07-11T04:52:49.347 回答
2
  1. 定义数组。

  2. 将数据推送到数组中。

例子:

$array = new array();

foreach ($group as $b) {
    if ($b == 0) {
       echo "error";
    } else {
    echo "true";
    array_push($array,$b) //or any value?
    }
}
于 2012-07-11T04:56:31.733 回答
1

使用array_push检查这个链接

 $a = new array();
array_push($a,"true");
print_r($a);

我们可以通过以下方式添加到数值数组:

$arr = new array("true");    //Create the array & add the values
var_dump($arr);    //Print the contents of the array to screen

您还可以将值推送到数组:

$arr = new array();    //Create the array
array_push($arr, 'true');    //'Push' the value into the next available index
var_dump($arr);    //Print the contents of the array to screen

您也可以通过直接设置索引来添加到数组中:

$arr = new array();    //Create the array
$arr[0] = 'true';    //'Set' index 0 to the value
var_dump($arr);    //Print the contents of the array to screen
于 2012-07-11T04:53:59.237 回答
1

用它:

array_push($arr,"true");

或者

echo "true";
$arr[] = $b;

要了解有关 array_push 的更多信息,请阅读以下内容:

http://php.net/manual/en/function.array-push.php

于 2012-07-11T05:00:20.703 回答