php修剪数组中的所有元素
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php修剪数组中的所有元素相关的知识,希望对你有一定的参考价值。
A function i made for running trim on all elements in an array
/* - 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 $tmp[$name] = trim_array($item); // - We need to trim that one first } else { // Else: } } return $tmp; // Return the trimed versjon of the array }
以上是关于php修剪数组中的所有元素的主要内容,如果未能解决你的问题,请参考以下文章