php - 如何快速的在数组中取出健值不等于null的数组元素?
PHP中文网
PHP中文网 2017-04-10 14:39:06
0
1
595
    $arr = array(
        'id'=>'5',
        'name'=>'user',
        'pwd'=>'',
        'email'=>'user@163.com',
        'acl'=>'',
        'status'=>'1',
    );
    function ifs($arr){
        foreach($arr as $k=>$v){
            return empty($v) ? null : $where;
        }
    }
    echo '<pre/>';
    print_r(ifs($arr));
/*输出如下:
array(
        'id'=>'5',
        'name'=>'user',
        'pwd'=>'',
        'email'=>'user@163.com',
        'acl'=>'',
        'status'=>'1',
    )
希望是:
array(
        'id'=>'5',
        'name'=>'user',
        'email'=>'user@163.com',
        'status'=>'1',
    )
*/
PHP中文网
PHP中文网

认证高级PHP讲师

reply all(1)
阿神

array_filter

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template