如何从php数组中删除元素

这个问题在这里已经有了答案:

  • PHP:从数组中删除一个元素34个答案

  • 要获得更清晰的代码,请使用array_filter函数http://fr2.php.net/array_filter

    $result = array_filter($result, function($row) {
        return $row['Department'] != 'br' || $row['Br_no'] === $row['emp_servicing_bnk'];
    });
    

    您可以使用unset()函数销毁数组中的特定键:

    foreach ($data as $key => $row) {
        if (/* your condition*/) {
            unset($data[$key]);
        }
    }
    

    在php中使用unset 。 像下面的代码:

    unset($row['emp_servicing_bnk'])
    
    链接地址: http://www.djcxy.com/p/30105.html

    上一篇: how to remove elements from a php array

    下一篇: PHP Removing elements from an array