当前位置: 代码迷 >> 综合 >> 去除所有的空格 php
  详细解决方案

去除所有的空格 php

热度:76   发布时间:2023-10-16 22:57:12.0

1、去除两边的空格   

  $arr=" shhs ";trim($arr)

2、正则匹配去除所有的空格   

 $goodid =“    ceshi    ”;$res=preg_replace('# #','',$goodid)print_r($res);

结果:

ceshi

第2种方案比较好,第一个trim 只能去掉左右的空格,但是不能去掉所有的,方案2,能去掉所以的空格;

  相关解决方案