PHP清除数组中所有字符串两端空格的方法

 2025-01-15  阅读 245  评论 8  点赞 357

摘要:本文实例讲述了php清除数组中所有字符串两端空格的方法,分享给大家供大家参考。具体实现方法如下: 一般来说在php中清除字符串中空格我们可以有很多实现方法,但清除数组中所有值的前后代码我们并不能简单的使用这些方法,本文实例主要使用php独有的array_map函数遍历清除数

本文实例讲述了php清除数组中所有字符串两端空格的方法,分享给大家供大家参考。具体实现方法如下:

PHP清除数组中所有字符串两端空格的方法

一般来说在php中清除字符串中空格我们可以有很多实现方法,但清除数组中所有值的前后代码我们并不能简单的使用这些方法,本文实例主要使用php独有的array_map函数遍历清除数组中所有字符串的两端空格。
 
具体实现代码如下:

复制代码 代码如下:
function trimarray($input){
    if (!is_array($input))
        return trim($input);
    return array_map('trimarray', $input);
}
/*
old version (v0.1):旧版本给大家作为对比参考:
function trimarray($arr){
    if (!is_array($arr)){ return $arr; }
    while (list($key, $value) = each($arr)){
        if (is_array($value)){
            $arr[$key] = trimarray($value);
        }
        else {
            $arr[$key] = trim($value);
        }
    }
    return $arr;
}
*/

//演示范例:
$dirtyarray = array(
    'key1' => ' value 1 ',
    'key2' => '      value 2      ',
    'key3' => array(
        '   child array item 1 ',
        '   child array item 2'
    )
);
$cleanarray = trimarray($dirtyarray);
var_dump($cleanarray);
 
result will be:
array(3) {
  ["key1"]=>
  string(7) "value 1"
  ["key2"]=>
  string(7) "value 2"
  ["key3"]=>
  array(2) {
    [0]=>
    string(18) "child array item 1"
    [1]=>
    string(18) "child array item 2"
  }
}

希望本文所述对大家的php程序设计有所帮助。


标签:phpphp教程

评论列表:

  •   haliluya
     发布于 3天前回复该评论
  • 写的很不错,学到了!
显示更多评论

发表评论:

管理员

承接各种程序开发,外贸网站代运营,外贸网站建设等项目
  • 内容2460
  • 积分67666
  • 金币86666

Copyright © 2024 LS'Blog-保定PHP程序员老宋个人博客 Inc. 保留所有权利。 Powered by LS'blog 3.0.3

页面耗时0.0285秒, 内存占用1.94 MB, 访问数据库30次

冀ICP备19034377号