PHP 字符串 trim() 函数是内置函数。它用于从字符串的开头和结尾或字符串的两侧去除空格。
用法:
trim(string,charlist);
参数 | 描述 | 必需/可选 |
---|---|---|
String | 指定要检查的字符串。 | Required |
charlist | 指定要删除的字符。以下字符:
|
Optional |
例子1
<?php
$str = "Hello PHP!";
echo "Your string is:".$str ."<br>";
echo "By using trim() function:".trim($str,"Hed!");
?>
输出:
Your string is:Hello PHP! By using trim() function:llo PHP
例子2
<?php
$str = " Hello Javatpoint! ";
echo "Without trim() function:".$str;
echo "<br>";
echo "With trim() function:".trim($str);
?>
输出:
Without trim() function:Hello Javatpoint! With trim() function:Hello Javatpoint!
例子3
<?php
$str = "\n\n\nHello Javatpoint\n\n\n";
echo "Without trim() function:" . $str;
echo "<br>";
echo "With trim() function:" . trim($str);
?>
输出:
Without trim() function:Hello Javatpoint With trim() function:Hello Javatpoint
相关用法
- PHP string rtrim()用法及代码示例
- PHP string printf()用法及代码示例
- PHP string ord()用法及代码示例
- PHP string join()用法及代码示例
- PHP string sha1()用法及代码示例
- PHP string setlocale()用法及代码示例
- PHP string sha1_file()用法及代码示例
- PHP string md5()用法及代码示例
- PHP string ltrim()用法及代码示例
- PHP string str_repeat()用法及代码示例
- PHP string lcfirst()用法及代码示例
- PHP string str_shuffle()用法及代码示例
- PHP string similar_text()用法及代码示例
- PHP string crypt()用法及代码示例
- PHP string str_ireplace()用法及代码示例
- PHP string str_split()用法及代码示例
- PHP string strcoll()用法及代码示例
- PHP string str_rot13()用法及代码示例
- PHP string str_pad()用法及代码示例
注:本文由纯净天空筛选整理自 PHP string trim() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。