1. <tt id="5hhch"><source id="5hhch"></source></tt>
    1. <xmp id="5hhch"></xmp>

  2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

    <rp id="5hhch"></rp>
        <dfn id="5hhch"></dfn>

      1. 分享php數(shù)組去除空值函數(shù)

        時(shí)間:2020-11-15 14:42:23 PHP 我要投稿

        分享php數(shù)組去除空值函數(shù)

          對(duì)于一個(gè)一維的php數(shù)組,如何清除其中值為空的元素呢?直接的`辦法是foreach循環(huán)一下,一個(gè)個(gè)判斷排除。不過(guò)這個(gè)方法還是略顯復(fù)雜,下面分享一下今天看到的一個(gè)方法,非常簡(jiǎn)潔

          復(fù)制代碼 代碼如下:

          /**

          * 方法庫(kù)-數(shù)組去除空值

          * @param string $num 數(shù)值

          * @return strin

          */

          public function array_remove_empty(&$arr, $trim = true) {

          if (!is_array($arr)) return false;

          foreach($arr as $key => $value){

          if (is_array($value)) {

          self::array_remove_empty($arr[$key]);

          } else {

          $value = ($trim == true) ? trim($value) : $value;

          if ($value == "") {

          unset($arr[$key]);

          } else {

          $arr[$key] = $value;

          }

          }

          }

          }

          是不是非常實(shí)用的函數(shù)呢,希望大家能夠喜歡。

        【分享php數(shù)組去除空值函數(shù)】相關(guān)文章:

        1.php數(shù)組函數(shù)序列之a(chǎn)sort

        2.php數(shù)組函數(shù)序列之ksort

        3.PHP學(xué)習(xí)之?dāng)?shù)組值操作技巧

        4.php數(shù)組函數(shù)序列之a(chǎn)rray-combine() - 數(shù)組合并函數(shù)的代碼

        5.淺談PHP如何判斷數(shù)組是否為空

        6.如何獲取PHP數(shù)組的鍵與值呢

        7.php遞歸函數(shù)相關(guān)知識(shí)分享

        8.asp數(shù)組重復(fù)刪除函數(shù)

        国产高潮无套免费视频_久久九九兔免费精品6_99精品热6080YY久久_国产91久久久久久无码

        1. <tt id="5hhch"><source id="5hhch"></source></tt>
          1. <xmp id="5hhch"></xmp>

        2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

          <rp id="5hhch"></rp>
              <dfn id="5hhch"></dfn>