PHP trim() 函數(shù)
PHP trim() 函數(shù)
實(shí)例
移除字符串兩側(cè)的字符("Hello" 中的 "He"以及 "World" 中的 "d!"):
<?php
$str = "Hello World!";
echo $str . PHP_EOL;
echo trim($str,"Hed!");
?>
運(yùn)行實(shí)例 ?
定義和用法
trim() 函數(shù)移除字符串兩側(cè)的空白字符或其他預(yù)定義字符。
相關(guān)函數(shù):
語法
trim(string,charlist)
參數(shù) | 描述 |
---|---|
string | 必需。規(guī)定要檢查的字符串。 |
charlist | 可選。規(guī)定從字符串中刪除哪些字符。如果省略該參數(shù),則移除下列所有字符:
|
技術(shù)細(xì)節(jié)
返回值: | 返回已修改的字符串。 |
---|---|
PHP 版本: | 4+ |
更新日志: | 在 PHP 4.1 中,新增了 charlist 參數(shù)。 |
更多實(shí)例
實(shí)例 1
移除字符串兩側(cè)的空格:
<?php
$str = " Hello World! ";
echo "Without trim: " . $str;
echo "<br>";
echo "With trim: " . trim($str);
?>
上面代碼的 HTML 輸出如下(查看源代碼):
<!DOCTYPE html>
<html>
<body>
Without trim: Hello World! <br>With trim: Hello World!
</body>
</html>
上面代碼的瀏覽器輸出如下:
Without trim: Hello World!
With trim: Hello World!
With trim: Hello World!
運(yùn)行實(shí)例 ?
實(shí)例 2
移除字符串兩側(cè)的換行符(\n):
<?php
$str = "nnnHello World!nnn";
echo "Without trim: " . $str;
echo "<br>";
echo "With trim: " . trim($str);
?>
上面代碼的 HTML 輸出如下(查看源代碼):
<!DOCTYPE html>
<html>
<body>
Without trim:
Hello World!
<br>With trim: Hello World!
</body>
</html>
上面代碼的瀏覽器輸出如下:
Without trim: Hello World!
With trim: Hello World!
With trim: Hello World!
運(yùn)行實(shí)例 ?

相關(guān)文章
- PHP 語法
- PHP EOF(heredoc) 使用說明
- PHP 常量
- PHP For 循環(huán)
- PHP $_GET 變量
- PHP array_combine() 函數(shù)
- PHP array_diff_uassoc() 函數(shù)
- PHP array_diff_ukey() 函數(shù)
- PHP array_intersect() 函數(shù)
- PHP array_key_exists() 函數(shù)
- PHP array_multisort() 函數(shù)
- PHP array_product() 函數(shù)
- PHP array_sum() 函數(shù)
- PHP array_unique() 函數(shù)
- PHP array_values() 函數(shù)
- PHP natsort() 函數(shù)
- PHP FTP 函數(shù)
- PHP Libxml 函數(shù)
- PHP 5 MySQLi 函數(shù)
- PHP PDO