suchen

Heim  >  Fragen und Antworten  >  Hauptteil

php - 如何快速的在数组中取出健值不等于null的数组元素?

    $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中文网2818 Tage vor593

Antworte allen(1)Ich werde antworten

  • 阿神

    阿神2017-04-10 14:41:06

    array_filter

    Antwort
    0
  • StornierenAntwort