PHP chop() 函数
PHP chop() 函数
定义和用法
chop() 函数移除字符串右侧的空白字符或其他预定义字符。
语法
chop(string,charlist)
参数 | 描述 |
---|---|
string | 必需。规定要检查的字符串。 |
charlist | 可选。规定从字符串中删除哪些字符。 如果 charlist 参数为空,则移除下列字符:
|
技术细节
返回值: | 返回已修改的字符串。 |
---|---|
PHP 版本: | 4+ |
更新日志: | 在 PHP 4.1.0 中,新增了 charlist 参数。 |
更多实例
实例 1
移除字符串右侧的换行符(\n):
<?php
$str = "Hello World!\n\n";
echo $str;
echo chop($str);
?>
$str = "Hello World!\n\n";
echo $str;
echo chop($str);
?>
上面代码的 HTML 输出如下(查看源代码):
<!DOCTYPE html>
<html>
<body>
Hello World!
Hello World!
</body>
</html>
<html>
<body>
Hello World!
Hello World!
</body>
</html>
上面代码的浏览器输出如下:
Hello World! Hello World!
运行实例 »
PHP String 参考手册
相关文章
- PHP 简介
- PHP 语法
- PHP 变量
- PHP 类型比较
- PHP 字符串
- PHP $_POST 变量
- PHP date() 函数
- PHP Session
- PHP array_diff_key() 函数
- PHP array_diff_uassoc() 函数
- PHP array_intersect_assoc() 函数
- PHP array_push() 函数
- PHP array_shift() 函数
- PHP array_udiff_assoc() 函数
- PHP array_unique() 函数
- PHP array_values() 函数
- PHP in_array() 函数
- PHP natcasesort() 函数
- PHP 5 Date/Time 函数
- PHP Error 和 Logging 函数