PHP uses Array_filter () function to filter empty array implementation code _php instance

Source: Internet
Author: User

Today, looking at the details of the manual query Array_filter (), I saw a small key point: If No callback is supplied, all entries of input equal to FALSE (see Converting to Boolean) would be removed. If the callback function is not given, all elements that are equal to FALSE will be removed, which is not exactly what can be used to filter an array with empty elements? Quickly write an example to test the idea:

Copy Code code as follows:

$entry = Array (

0 => ' Blue Hawaiian blog ',

1 => false,

2 => 1,

3 => NULL,

4 => ',

5 => ' http://www.jb51.net ',

6 => ' 0 ',

7 => Array (),

8 => 0

);

$validarr = Array_filter ($entry);

Print_r ($validarr);

Output results:

Array

(

[0] => Blue Hawaii Blog

[2] => 1

[5] => http://www.jb51.net

)


Some of the array elements that can be converted to Boolean false are removed and a very comprehensive filter is made to get a valid array.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.