去除字符串到的空格有多种方法,下面介绍两种给大家:
使用 str_replace :
<?php $string = str_replace(' ', '', $string); ?>
使用 preg_replace :
<?php $string = preg_replace('/\s+/', '', $string); ?>
去除字符串到的空格有多种方法,下面介绍两种给大家:
使用 str_replace :
<?php $string = str_replace(' ', '', $string); ?>
使用 preg_replace :
<?php $string = preg_replace('/\s+/', '', $string); ?>