如何为数组中的某些值添加值

时间:2017-06-30 07:59:22

标签: php arrays

所以我有以下代码。我希望任何返回值为2的部分都能添加一个标记,以便稍后用

调用它们
if(isset($array['Marker'])){do something}

我用来对数组进行排序的代码就是这个

if(in_array(2, array_count_values($array['CustomerID'])) && 0 < $array['status'] < 5) {}

虽然我可以做这样的事情

      if(in_array(2, array_count_values($array['CustomerID'])) && 0 < $array['status'] < 5) {
   foreach($array['CustomerID'] as $customerID){
     if($customerID%2 == 0){
     //add to the main array in here?
   }
   }
   }

由于数据库退出大而且需要几秒钟才能加载,因此需要很长时间。我需要完成大部分数据库。

1 个答案:

答案 0 :(得分:-1)

[评论]你可能想看看PHP算术运算符(%模数)https://www.w3schools.com/php/php_operators.asp