这篇文章主要讲解了“php如何取消空格换行”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“php如何取消空格换行”吧!
取消空格
1.1 rtrim函数
rtrim函数可以用来删除字符串右边的空格。
$string = "Hello World ";
$string = rtrim($string);
echo $string;
输出结果为:Hello World
1.2 ltrim函数
ltrim函数可以用来删除字符串左边的空格。
$string = " Hello World";
$string = ltrim($string);
echo $string;
输出结果为:Hello World
1.3 trim函数
trim函数可以用来删除字符串两端的空格。
$string = " Hello World ";
$string = trim($string);
echo $string;
输出结果为:Hello World
取消换行符
2.1 str_replace函数
str_replace函数可以用来替换字符串中的某些字符。我们可以将换行符替换为空字符。
$string = "Hello
World";
$string = str_replace("
", "", $string);
echo $string;
输出结果为:HelloWorld
2.2 preg_replace函数
preg_replace函数是PHP中的正则表达式函数,可以用来搜索并替换字符串。我们可以使用它来删除换行符。
$string = "Hello
World";
$string = preg_replace("/
|
/", "", $string);
echo $string;
输出结果为:HelloWorld
代码示例
综合以上方法,我们可以写出一个函数来删除字符串两端的空格和换行符。
function remove_space_return($string){
$string = str_replace(array("
","
"," "), '', $string); // 除去换行和空格
$string = trim($string); // 除去两端空格
return $string;
}
版权声明:除特别声明外,本站所有文章皆是本站原创,转载请以超链接形式注明出处!