学习php笔记 字符串处理
程序员文章站
2022-05-03 19:06:25
...
substr();
substr(str,start,length);
例:substr('php is very good language',4,5);
输出为 is ve;
当start>str的长度,则返回为();
substr('php is very good language',26,5);
substr('php is very good language',4);
输出为 (空白)
输出为is v (表明start和langth都为4)
当start为负值,则从str末尾出开始读起(*这时是从-1开始读,而不是从0开始),
substr('php is very good language',-4,5);
输出为uage
当length为负值时,length代表的是从末尾开始读,截取str的结束位置。
substr('php is very good language',4,-5);
输出为is very good lan
explode()把函数字符串分割为数组;
strrev()把函数字符串
setlocalhost(content location)设置本地环境.content ,指定需要设置的场景信息常量有(
LC_ALL – 所有下属的常量
LC_COLLATE – 排列顺序
LC_CTYPE – 字符分类和转换(例如:将所有的字符转换成小写或大写形式)
LC_MESSAGES – 系统信息格式
LC_MONETARY – 货币 / 通货格式
LC_NUMERIC – 数值格式
LC_TIME – 日期和时间格式
);location,设置国家区域,例如,chs.
strftime()根据区域设置格式化本地时间/日期。
substr(str,start,length);
例:substr('php is very good language',4,5);
输出为 is ve;
当start>str的长度,则返回为();
substr('php is very good language',26,5);
substr('php is very good language',4);
输出为 (空白)
输出为is v (表明start和langth都为4)
当start为负值,则从str末尾出开始读起(*这时是从-1开始读,而不是从0开始),
substr('php is very good language',-4,5);
输出为uage
当length为负值时,length代表的是从末尾开始读,截取str的结束位置。
substr('php is very good language',4,-5);
输出为is very good lan
explode()把函数字符串分割为数组;
strrev()把函数字符串
setlocalhost(content location)设置本地环境.content ,指定需要设置的场景信息常量有(
LC_ALL – 所有下属的常量
LC_COLLATE – 排列顺序
LC_CTYPE – 字符分类和转换(例如:将所有的字符转换成小写或大写形式)
LC_MESSAGES – 系统信息格式
LC_MONETARY – 货币 / 通货格式
LC_NUMERIC – 数值格式
LC_TIME – 日期和时间格式
);location,设置国家区域,例如,chs.
strftime()根据区域设置格式化本地时间/日期。
上一篇: 正则里的贪婪表达式。解决思路
下一篇: php中的static_PHP教程
推荐阅读
-
PHP MVC框架路由学习笔记
-
PHP操作xml学习笔记之增删改查(1)—增加
-
微信小程序学习笔记之表单提交与PHP后台数据交互处理图文详解
-
Python3.4学习笔记之类型判断,异常处理,终止程序操作小结
-
PHP学习笔记之字符串编码的转换和判断
-
浅析51个PHP处理字符串的函数
-
PHP 面向对象程序设计(oop)学习笔记(一) - 抽象类、对象接口、instanceof 和契约式编程
-
PHP 面向对象程序设计(oop)学习笔记 (二) - 静态变量的属性和方法及延迟绑定
-
PHP 面向对象程序设计(oop)学习笔记(三) - 单例模式和工厂模式
-
PHP 面向对象程序设计(oop)学习笔记 (四) - 异常处理类Exception