PHP chop() 函數(shù)
PHP chop() 函數(shù)
實(shí)例
移除字符串右側(cè)的字符:
<?php
$str = "Hello World!";
echo $str . "<br>";
echo chop($str,"World!");
?>
$str = "Hello World!";
echo $str . "<br>";
echo chop($str,"World!");
?>
運(yùn)行實(shí)例 ?
定義和用法
chop() 函數(shù)移除字符串右側(cè)的空白字符或其他預(yù)定義字符。
語法
chop(string,charlist)
參數(shù) | 描述 |
---|---|
string | 必需。規(guī)定要檢查的字符串。 |
charlist | 可選。規(guī)定從字符串中刪除哪些字符。 如果 charlist 參數(shù)為空,則移除下列字符:
|
技術(shù)細(xì)節(jié)
返回值: | 返回已修改的字符串。 |
---|---|
PHP 版本: | 4+ |
更新日志: | 在 PHP 4.1.0 中,新增了 charlist 參數(shù)。 |
更多實(shí)例
實(shí)例 1
移除字符串右側(cè)的換行符(\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!
運(yùn)行實(shí)例 ?

相關(guān)文章
- PHP 簡介
- PHP 語法
- PHP 變量
- PHP 類型比較
- PHP 字符串
- PHP $_POST 變量
- PHP date() 函數(shù)
- PHP Session
- PHP array_diff_key() 函數(shù)
- PHP array_diff_uassoc() 函數(shù)
- PHP array_intersect_assoc() 函數(shù)
- PHP array_push() 函數(shù)
- PHP array_shift() 函數(shù)
- PHP array_udiff_assoc() 函數(shù)
- PHP array_unique() 函數(shù)
- PHP array_values() 函數(shù)
- PHP in_array() 函數(shù)
- PHP natcasesort() 函數(shù)
- PHP 5 Date/Time 函數(shù)
- PHP Error 和 Logging 函數(shù)