PHP php修剪数组中的alle元素

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP php修剪数组中的alle元素相关的知识,希望对你有一定的参考价值。

/*  - function trim_array() -
	 *
	 * A function for quicly triming all variables in an array
	 *
	 */
	
	function trim_array($value) 
	{ 
		foreach($value as $name => $item) {				// Walk's trou the array
			if(is_array($item)) {						// If the variable is an array:
				$tmp[$name] = trim_array($item);		//   - We need to trim that one first
			} else {									// Else:
				$tmp[$name] = trim($item);				//   - Trims the variable
			}
		}
		return $tmp; 									// Return the trimed versjon of the array
	}

以上是关于PHP php修剪数组中的alle元素的主要内容,如果未能解决你的问题,请参考以下文章

PHP 修剪数组的所有元素

如何在php中修剪数组值的空格

php 修剪数组(递归)

PHP根据某元素取二维数组中的一维数组

php 编程 :怎样把数组中的元素按键名大小排列

php编程:如何确定数组中的元素是不是包含某一字符串?