PHP ltrim() 函數(shù)
PHP ltrim() 函數(shù)
實(shí)例
移除字符串左側(cè)的字符:
<?php
$str = "Hello World!";
echo $str . "<br>";
echo ltrim($str,"Hello");
?>
$str = "Hello World!";
echo $str . "<br>";
echo ltrim($str,"Hello");
?>
運(yùn)行實(shí)例 ?
定義和用法
ltrim() 函數(shù)移除字符串左側(cè)的空白字符或其他預(yù)定義字符。
相關(guān)函數(shù):
語(yǔ)法
ltrim(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 ltrim: " . $str;
echo "<br>";
echo "With ltrim: " . ltrim($str);
?>
$str = " Hello World!";
echo "Without ltrim: " . $str;
echo "<br>";
echo "With ltrim: " . ltrim($str);
?>
上面代碼的 HTML 輸出如下(查看源代碼):
<!DOCTYPE html>
<html>
<body>
Without ltrim: Hello World!<br>With ltrim: Hello World!
</body>
</html>
<html>
<body>
Without ltrim: Hello World!<br>With ltrim: Hello World!
</body>
</html>
上面代碼的瀏覽器輸出如下:
Without ltrim: Hello World!
With ltrim: Hello World!
With ltrim: Hello World!
運(yùn)行實(shí)例 ?
實(shí)例 2
移除字符串左側(cè)的換行符(\n):
<?php
$str = "nnnHello World!";
echo "Without ltrim: " . $str;
echo "<br>";
echo "With ltrim: " . ltrim($str);
?>
$str = "nnnHello World!";
echo "Without ltrim: " . $str;
echo "<br>";
echo "With ltrim: " . ltrim($str);
?>
上面代碼的 HTML 輸出如下(查看源代碼):
<!DOCTYPE html>
<html>
<body>
Without ltrim:
Hello World!<br>With ltrim: Hello World!
</body>
</html>
<html>
<body>
Without ltrim:
Hello World!<br>With ltrim: Hello World!
</body>
</html>
上面代碼的瀏覽器輸出如下:
Without ltrim: Hello World!
With ltrim: Hello World!
With ltrim: Hello World!
運(yùn)行實(shí)例 ?

相關(guān)文章
- PHP 變量
- PHP 數(shù)據(jù)類型
- PHP 常量
- PHP $_POST 變量
- PHP date() 函數(shù)
- PHP Cookie
- PHP 過(guò)濾器
- PHP array() 函數(shù)
- PHP array_count_values() 函數(shù)
- PHP array_diff_assoc() 函數(shù)
- PHP array_filter() 函數(shù)
- PHP array_intersect_key() 函數(shù)
- PHP array_keys() 函數(shù)
- PHP array_pop() 函數(shù)
- PHP array_udiff_assoc() 函數(shù)
- PHP ksort() 函數(shù)
- PHP Error 和 Logging 函數(shù)
- PHP Filter 函數(shù)
- PHP Libxml 函數(shù)
- PHP 5 Math 函數(shù)