PHP 中的 chop() 函数
phpprogrammingserver side programming
PHP 中的 chop() 函数用于删除空格。
语法
chop(str, charlist)
参数
str − 要转义的字符串。
charlist − 指定应删除的字符。
返回
chop() 函数
示例
以下是示例 −
<?php $str = "Demo Text!"; echo $str . " "; echo chop($str,"Text!"); ?>
输出
Demo Text! Demo
示例
让我们看另一个例子 −
<?php $str = "Welcome
to the
website
"; echo $str; echo chop($str); ?>
输出
Welcome to the website Welcome to the website