PHP recursive call to delete array null element method, recursive array _php tutorial

Source: Internet
Author: User

PHP recursive call to delete array null element method, recursive array


The example in this paper describes the method of PHP recursive call to delete an array null element. Share to everyone for your reference. Specific as follows:

The function can delete all empty elements in the array, including empty strings, empty arrays, and so on.

function Array_remove_empty ($arr) {$narr = array (); while (List ($key, $val) = each ($arr)) {  if (Is_array ($val   )) { $val = Array_remove_empty ($val);   Does the result array contain anything?   if (count ($val)!=0) {    //Yes:-)    $narr [$key] = $val;   }  }  else {   if (Trim ($val)! = ") {    $narr [$key] = $val;   }}  } Unset ($arr); return $narr;}

Demo Example:
The copy Code code is as follows: Array_remove_empty (Array (4, ",", "array") = Returns Array (1,2,3,4)

I hope this article is helpful to everyone's PHP programming.

http://www.bkjia.com/PHPjc/991806.html www.bkjia.com true http://www.bkjia.com/PHPjc/991806.html techarticle PHP recursive call to delete an array of empty elements of the method, recursive array This article describes the PHP recursive call to delete an array of empty elements of the method. Share to everyone for your reference. Specific as follows: ...

  • 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.