当前位置: 编程技术>php
php trim函数用法实例
来源: 互联网 发布时间:2014-08-30
本文导语: php去空格函数trim的定义和用法。 trim() 函数从字符串的两端删除空白字符和其他预定义字符。 语法trim(string,charlist)string必需。规定要检查的字符串。 charlist 可选,规定要转换的字符串。如果省略该参数,则删除以下所有字符...
php去空格函数trim的定义和用法。
trim() 函数从字符串的两端删除空白字符和其他预定义字符。
语法trim(string,charlist)string必需。规定要检查的字符串。
charlist 可选,规定要转换的字符串。如果省略该参数,则删除以下所有字符:
"" - null
"t" - tab
"n" - new line
"x0b" - 纵向列表符
"r" - 回车
" " - 普通空白字符
"t" - tab
"n" - new line
"x0b" - 纵向列表符
"r" - 回车
" " - 普通空白字符
例子:
代码示例:
输出:
without trim: hello world!with trim: hello world!
html部分:
代码示例:
without trim: hello world!
with trim: hello world!例子 2
输出:
without trim: hello world!with trim: hello world!
with trim: hello world!例子 2
输出:
without trim: hello world!with trim: hello world!
例子:
代码示例:
without trim: hello world!
with trim: hello world! 444
with trim: hello world! 444