欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

PHP中ltrim()函数的用法与实例讲解

程序员文章站 2023-10-30 17:58:22
php ltrim() 函数 实例 移除字符串左侧的字符:

php ltrim() 函数

实例

移除字符串左侧的字符:

<?php 
$str = "hello world!"; 
echo $str . "<br>"; 
echo ltrim($str,"hello"); 
?>

定义和用法

ltrim()函数移除字符串左侧的空白字符或其他预定义字符。

相关函数:

  • rtrim() - 移除字符串右侧的空白字符或其他预定义字符。
  • trim() - 移除字符串两侧的空白字符或其他预定义字符。

语法

ltrim( _string,charlist_ )

PHP中ltrim()函数的用法与实例讲解

PHP中ltrim()函数的用法与实例讲解

实例 1

移除字符串左侧的空格:

<?php 
$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>

上面代码的浏览器输出如下:

without ltrim: hello world! 
with ltrim: hello world!

实例 2

移除字符串左侧的换行符(\n):

<?php 
$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>

上面代码的浏览器输出如下:

without ltrim: hello world! 
with ltrim: hello world!

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接