php修剪数组中的所有元素

Posted

tags:

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

A function i made for running trim on all elements in an array
  1. /* - function trim_array() -
  2. *
  3. * A function for quicly triming all variables in an array
  4. *
  5. */
  6.  
  7. function trim_array($value)
  8. {
  9. foreach($value as $name => $item) { // Walk's trou the array
  10. if(is_array($item)) { // If the variable is an array:
  11. $tmp[$name] = trim_array($item); // - We need to trim that one first
  12. } else { // Else:
  13. $tmp[$name] = trim($item); // - Trims the variable
  14. }
  15. }
  16. return $tmp; // Return the trimed versjon of the array
  17. }

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

PHP php修剪数组中的alle元素

如何修剪数组中的所有字符串? [复制]

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

php 修剪数组(递归)

为什么我不能在此片段中生成唯一对象数组?

php 怎样从一个数组中取出所有元素