PHP chop() 函數
PHP chop() 函數
定義和用法
chop() 函數移除字符串右側的空白字符或其他預定義字符。
語法
chop(string,charlist)
參數 | 描述 |
---|---|
string | 必需。規(guī)定要檢查的字符串。 |
charlist | 可選。規(guī)定從字符串中刪除哪些字符。 如果 charlist 參數為空,則移除下列字符:
|
技術細節(jié)
返回值: | 返回已修改的字符串。 |
---|---|
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 簡介
- 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 函數