PHP chop() 函数

PHP 教程 · 2019-01-29 10:28:02

实例

移除字符串右侧的字符:

<?php
$str = "Hello World!";
echo $str . "<br>";
echo chop($str,"World!");
?>

定义和用法

chop() 函数移除字符串右侧的空白字符或其他预定义字符。

语法


chop(string,charlist)


参数 描述
string 必需。规定要检查的字符串。
charlist 可选。规定从字符串中删除哪些字符。
如果 charlist 参数为空,则移除下列字符:
  • "\0" - NULL
  • "\t" - 制表符
  • "\n" - 换行
  • "\x0B" - 垂直制表符
  • "\r" - 回车
  • " " - 空格

技术细节

返回值: 返回已修改的字符串。
PHP 版本: 4+
更新日志: 在 PHP 4.1.0 中,新增了 charlist 参数。

更多实例

实例 1

移除字符串右侧的换行符(\n):

<?php
$str = "Hello World!\n\n";
echo $str;
echo chop($str);
?>

上面代码的 HTML 输出如下(查看源代码):

<!DOCTYPE html>
<html>

<body>

Hello World!

Hello World!

</body>
</html>

上面代码的浏览器输出如下:

Hello World! Hello World!

点击查看所有 PHP 教程 文章: https://www.codercto.com/courses/l/5.html

查看所有标签

Large-Scale Inference

Large-Scale Inference

Bradley Efron / Cambridge University Press / 2010-8-5 / GBP 48.00

We live in a new age for statistical inference, where modern scientific technology such as microarrays and fMRI machines routinely produce thousands and sometimes millions of parallel data sets, each ......一起来看看 《Large-Scale Inference》 这本书的介绍吧!

图片转BASE64编码
图片转BASE64编码

在线图片转Base64编码工具

html转js在线工具
html转js在线工具

html转js在线工具

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具