当前位置: 首页 > 网络学院 > 服务端脚本教程 > PHP > rtrim() 函数
The rtrim() function will remove whitespaces or other predefined character from the right side of a string.
rtrim()函数的作用是:去除字符串末尾的空白(或其它字符)。
rtrim(string,charlist) |
Parameter参数 | Description描述 |
---|---|
string | Required. Specifies the string to check 必要参数。指定字符串对象 |
charlist | Optional. Specifies which characters to remove from the string. If omitted, all of the following characters are removed: 可选参数。指定需要从指定的字符串中删掉那些字符。如果忽略该参数,那么下列所有的字符将都被删除:
|