PHP中ltrim()函数的用法与实例讲解
程序员文章站
2022-06-08 23:17:19
php ltrim() 函数
实例
移除字符串左侧的字符:
php ltrim() 函数
实例
移除字符串左侧的字符:
<?php $str = "hello world!"; echo $str . "<br>"; echo ltrim($str,"hello"); ?>
定义和用法
ltrim()
函数移除字符串左侧的空白字符或其他预定义字符。
相关函数:
- rtrim() - 移除字符串右侧的空白字符或其他预定义字符。
- trim() - 移除字符串两侧的空白字符或其他预定义字符。
语法
ltrim( _string,charlist_ )
实例 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!
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接
上一篇: Python和JavaScript间代码转换4个工具
下一篇: js倒计时代码_时间日期