博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PHP之string之ltrim()函数使用
阅读量:4987 次
发布时间:2019-06-12

本文共 1209 字,大约阅读时间需要 4 分钟。

ltrim

  • (PHP 4, PHP 5, PHP 7)
  • ltrim — Strip whitespace (or other characters) from the beginning of a string
  • ltrim — 删除字符串开头的空白字符(或其他字符)

Description

string ltrim ( string $str [, string $character_mask ] )//Strip whitespace (or other characters) from the beginning of a string.//删除字符串开头的空白字符(或其他字符)

Parameters

str

  • The input string.
  • 输入的字符串。

character_mask

  • You can also specify the characters you want to strip, by means of the character_mask parameter. Simply list all characters that you want to be stripped. With .. you can specify a range of characters.
  • 通过参数 character_mask,你也可以指定想要删除的字符,简单地列出你想要删除的所有字符即可。使用..,可以指定字符的范围。

Return Values

  • This function returns a string with whitespace stripped from the beginning of str. Without the second parameter, ltrim() will strip these characters:
  • 该函数返回一个删除了 str 最左边的空白字符的字符串。 如果不使用第二个参数, ltrim() 仅删除以下字符:
  • " " (ASCII 32 (0x20)), an ordinary space.普通空白字符。
  • "\t" (ASCII 9 (0x09)), a tab.制表符.
  • "\n" (ASCII 10 (0x0A)), a new line (line feed).换行符。
  • "\r" (ASCII 13 (0x0D)), a carriage return.回车符。
  • "\0" (ASCII 0 (0x00)), the NUL-byte.NUL空字节符。
  • "\x0B" (ASCII 11 (0x0B)), a vertical tab.垂直制表符。

Examples

See

  • All rights reserved

转载于:https://www.cnblogs.com/zhangrxiang/p/8505116.html

你可能感兴趣的文章
说说Runnable与Callable
查看>>
ThreadLocal详解
查看>>
MVC中的Repository模式
查看>>
数据结构 排序(快速排序)
查看>>
java.util.Calendar常量字段值
查看>>
对DotNet分布式应用搭建的考虑
查看>>
scala 隐式详解(implicit关键字)
查看>>
红绿灯切换效果
查看>>
有一个人,她不会编程,但在计算机图像领域做出了卓越的贡献
查看>>
Maven第三篇【Maven术语、pom.xml介绍】
查看>>
day_3:解析
查看>>
转 winfrom如何通过http来进行通信,并且通过传递json格式的数据可接受json格式的数据...
查看>>
发布一个生成按钮图片的工具 c#写的
查看>>
TCP与UDP区别
查看>>
error_logger 爆炸
查看>>
dpkg命令的用法
查看>>
在thinkpad SL400上U盘安装双系统ubuntu14.10
查看>>
bootstrap-table 的使用
查看>>
编辑类
查看>>
用python绘制树和深林
查看>>