首页 > 代码库 > php 数组去除空值

php 数组去除空值

	/**	 * 方法库-数组去除空值	 * @param string $num  数值	 * @return string	 */	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 = http://www.mamicode.com/($trim == true) ? trim($value) : $value;"") {					unset($arr[$key]);				} else {					$arr[$key] = $value;				}			}		}	}

  

php 数组去除空值