所以我有以下代码。我希望任何返回值为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?
}
}
}
由于数据库退出大而且需要几秒钟才能加载,因此需要很长时间。我需要完成大部分数据库。