php trim函数实例代码

发布时间:2019-11-19编辑:脚本学堂
本文介绍了php trim函数的用法,一些trim函数的实例代码,trim() 函数从字符串的两端删除空白字符和其他预定义字符,有需要的朋友参考下。

php编程中, trim() 函数从字符串的两端删除空白字符和其他预定义字符。
 
去掉前后的空格. 

假设有一个字符串" ddd dd d ",经过trim()之后成为"ddd dd d". 

如上可以去掉两边多余的空格(包括制表符),但不能去掉中间的空格。 
php中的trim()函数跟asp中的trim()函数用法一样的。 

例子,去掉变量中空格。 
 

复制代码 代码示例:
<?php 
echo trim($变量); 
?>

一般用到用户的password处理中。

定义和用法
trim() 函数从字符串的两端删除空白字符和其他预定义字符。

语法
trim(string,charlist)参数 描述
string 必需。规定要检查的字符串。
charlist 可选。规定要转换的字符串。如果省略该参数,则删除以下所有字符:
 

"" - null
"t" - tab
"n" - new line
"x0b" - 纵向列表符
"r" - 回车
" " - 普通空白字符
 

例1,trim函数去除空格:
 

复制代码 代码示例:
<html>
<body>
<?php
$str = " hello world! ";
echo "without trim: " . $str;
echo "<br />";
echo "with trim: " . trim($str);
?>
<body>
<html>

输出结果:
 

without trim: hello world!
with trim: hello world!html

例2,trim函数去除空格:
 

复制代码 代码示例:
<?php
$str = "rnhello world!rn";
echo "without trim: " . $str;
echo "<br />";
echo "with trim: " . trim($str);
?>

输出结果:
 

without trim: hello world!
with trim: hello world!html