学习php笔记 字符串处理
程序员文章站
2022-06-03 10:24:40
substr(); substr(str,start,length); 例:substr('php is very good language',4,5); 输出为 is...
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 5.0创建图形的巧妙方法
下一篇: 常用工具
推荐阅读
-
PHP中的cURL请求及示例学习笔记
-
玩转PHP(一)-php中处理汉字字符串长度:strlen和mb_strlen
-
php字符串函数学习之substr(),字符串substr_PHP教程
-
PHP保险的学习笔记
-
PHP学习笔记 (1) 环境配置与代码调试_php技巧
-
[walkerlee原作]对PHP之函数sprintf()的学习研究笔记_PHP
-
photoshop入门学习 PHP学习笔记之三 数据库基本操作
-
Symfony2框架学习笔记之表单用法详解,symfony2学习笔记_PHP教程
-
PHP学习之输出字符串(echo,print,printf,print_r和var_dump)_php基础
-
PHP学习系列(1)字符串处理函数(3),php函数