Home  >  Article  >  php教程  >  PHP trim()函数的一些用法,phptrim函数用法

PHP trim()函数的一些用法,phptrim函数用法

WBOY
WBOYOriginal
2016-06-13 09:07:071303browse

PHP trim()函数的一些用法,phptrim函数用法

  string trim ( string $str [, string $charlist ] ) - 去除字符串首尾处的空白字符(或者其他字符)

  trim()函数当第二个参数为空时,默认去掉空格、制表符、换行符、回车符、垂直制表符等,当加入第二个参数时

    1) trim('   \"string\"', '\"sg');   // 最终输出:\"strin

    2) trim('   \"string\"   ', '\"sg');   // 最终输出:\"string\"

    2)trim('\"string\"', '\"sg');    // 最终输出:trin

  所以trim()函数优先去掉字符首尾的空白字符,再过滤掉给定的要去除的字符(列表),也适用于ltrim()、rtrim()函数

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn