>  기사  >  데이터 베이스  >  PHP和MySQL的删除空白函数介绍

PHP和MySQL的删除空白函数介绍

WBOY
WBOY원래의
2016-06-07 17:52:23884검색

作为黄金搭档,PHP和MySQL都有自己的删除空白函数,而且函数名字也一样:trim(), ltrim(), rtrim()。当然,作为编程语言,PHP删除空白函数更为强大。

    对 ltrim()和rtrim(),从其英语解释来看:


以下是引用片段:
PHP为:Strip whitespace (or other characters)
MySQL为:space characters removed


    显然,PHP还可以有“other characters”,而且PHP的函数还可以用第二个参数自定义要删除的字符。

    对“other characters”,手册解释为:


以下是引用片段:

 代码如下 复制代码
" " (ASCII 32 (0x20)), an ordinary space.
"t" (ASCII 9 (0x09)), a tab.
"n" (ASCII 10 (0x0A)), a new line (line feed).
"r" (ASCII 13 (0x0D)), a carriage return.
"\0" (ASCII 0 (0x00)), the NUL-byte.
"x0B" (ASCII 11 (0x0B)), a vertical tab.

 


    不过,MySQL的trim()函数也增加了对其他字符的删除。具体请见下面从手册上摘抄的解释。

= = = = = = = = = = = = = 方便阅读的分隔线  = = = = = = = = = = = = = = = =

    以下为MySQL的函数解释

 代码如下 复制代码

    LTRIM(str)

    Returns the string str with leading space characters removed.

以下是代码片段:

 代码如下 复制代码

mysql> SELECT LTRIM('  barbar');
        -> 'barbar'

 

    This function is multi-byte safe.

    RTRIM(str)

    Returns the string str with trailing space characters removed.


以下是代码片段:

 代码如下 复制代码

mysql> SELECT RTRIM('barbar   ');
        -> 'barbar'

    This function is multi-byte safe.

    TRIM([{BOTH | LEADING | TRAILING} [remstr] FROM] str), TRIM([remstr FROM] str)

    Returns the string str with all remstr prefixes or suffixes removed. If none of the specifiers BOTH, LEADING, or TRAILING is given, BOTH is assumed. remstr is optional and, if not specified, spaces are removed.


以下是代码片段:

 代码如下 复制代码

mysql> SELECT TRIM('  bar   ');
        -> 'bar'
mysql> SELECT TRIM(LEADING 'x' FROM 'xxxbarxxx');
        -> 'barxxx'
mysql> SELECT TRIM(BOTH 'x' FROM 'xxxbarxxx');
        -> 'bar'
mysql> SELECT TRIM(TRAILING 'xyz' FROM 'barxxyz');
        -> 'barx'

    This function is multi-byte safe.

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.