PHP trim() 函数
PHP trim() 函数
实例
移除字符串两侧的字符("Hello" 中的 "He"以及 "World" 中的 "d!"):
<?php
$str = "Hello World!";
echo $str . PHP_EOL;
echo trim($str,"Hed!");
?>
运行实例 »
定义和用法
trim() 函数移除字符串两侧的空白字符或其他预定义字符。
相关函数:
语法
trim(string,charlist)
参数 | 描述 |
---|---|
string | 必需。规定要检查的字符串。 |
charlist | 可选。规定从字符串中删除哪些字符。如果省略该参数,则移除下列所有字符:
|
技术细节
返回值: | 返回已修改的字符串。 |
---|---|
PHP 版本: | 4+ |
更新日志: | 在 PHP 4.1 中,新增了 charlist 参数。 |
更多实例
实例 1
移除字符串两侧的空格:
<?php
$str = " Hello World! ";
echo "Without trim: " . $str;
echo "<br>";
echo "With trim: " . trim($str);
?>
上面代码的 HTML 输出如下(查看源代码):
<!DOCTYPE html>
<html>
<body>
Without trim: Hello World! <br>With trim: Hello World!
</body>
</html>
上面代码的浏览器输出如下:
Without trim: Hello World!
With trim: Hello World!
With trim: Hello World!
运行实例 »
实例 2
移除字符串两侧的换行符(\n):
<?php
$str = "nnnHello World!nnn";
echo "Without trim: " . $str;
echo "<br>";
echo "With trim: " . trim($str);
?>
上面代码的 HTML 输出如下(查看源代码):
<!DOCTYPE html>
<html>
<body>
Without trim:
Hello World!
<br>With trim: Hello World!
</body>
</html>
上面代码的浏览器输出如下:
Without trim: Hello World!
With trim: Hello World!
With trim: Hello World!
运行实例 »
PHP String 参考手册
相关文章
- PHP 语法
- PHP EOF(heredoc) 使用说明
- PHP 常量
- PHP For 循环
- PHP $_GET 变量
- PHP array_combine() 函数
- PHP array_diff_uassoc() 函数
- PHP array_diff_ukey() 函数
- PHP array_intersect() 函数
- PHP array_key_exists() 函数
- PHP array_multisort() 函数
- PHP array_product() 函数
- PHP array_sum() 函数
- PHP array_unique() 函数
- PHP array_values() 函数
- PHP natsort() 函数
- PHP FTP 函数
- PHP Libxml 函数
- PHP 5 MySQLi 函数
- PHP PDO