词条 | php Trim |
释义 | php trim() 函数从字符串的两端删除空白字符和其他预定义字符。 语法trim(string,charlist) 参数 描述 string 必需。规定要检查的字符串。 charlist 可选。规定要转换的字符串。如果省略该参数,则删除以下所有字符: "\\0" - NULL "\\t" - tab "\" - new line "\\x0B" - 纵向列表符 "\\r" - 回车 " " - 普通空白字符 例子 1<html> <body> <?php Without trim: Hello World! With trim: Hello World!HTML 源码: <html> <body> Without trim: Hello World! <br />With trim: Hello World! </body> </html> 例子 2<?php Without trim: Hello World! With trim: Hello World!HTML 源码: <html> <body> Without trim: Hello World! <br />With trim: Hello World! </body> </html>PHP String 函数 |
随便看 |
百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。