PHP中的trim()函数是一个内置函数,该函数从字符串的左右两侧删除空格和预定义字符。
相关函数:
用法:
trim($string, $charlist)
参数:该函数接受一个强制参数和一个可选参数,如上面的语法所示,如下所述。
- $string:此参数指定要从中删除空格和左右预定义字符的字符串
- $charlist:这是一个可选参数,用于指定要从字符串中删除的字符。如果未提及,则以下所有字符将被删除:
- “\0” –空
- “\t” –选项卡
- “\n” –新行
- “\x0B” –垂直选项卡
- “\r” –回车
- “” –普通空白
返回值:它通过删除字符串左右两侧的空格和预定义字符来返回修改后的字符串。
以下示例程序旨在说明trim()函数:
示例1:
<?php
// PHP program to demonstrate the use of trim()
// function when second parameter is present
// removes the predefined characters from
// front and back
$str = "Hello World!";
echo trim($str, "Hell!");
?>
输出:
o World
示例2:
<?php
// PHP program to demonstrate the use of trim()
// function when second parameter is absent
$str = " geeks for geeks ";
// removes all leading and trailing whitespaces
echo trim($str);
?>
输出:
geeks for geeks
参考: http://php.net/manual/en/function.trim.php
相关用法
- p5.js trim()用法及代码示例
- Node.js GM trim()用法及代码示例
- Node.js trim()用法及代码示例
- PHP each()用法及代码示例
- p5.js int()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- d3.js d3.hsl()用法及代码示例
- d3.js d3.map.has()用法及代码示例
- p5.js pan()用法及代码示例
- PHP pow( )用法及代码示例
注:本文由纯净天空筛选整理自Twinkl Bajaj大神的英文原创作品 PHP | trim() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。