字符串操作在PHP中霸占主要的位置,险些所有的PHP脚本输入与输出都用到字符串。尤其是在PHP项目开拓中,为了实现某项功能,常常须要对某些字符串进行分外的处理,例如获取字符串的长度,截止字符串,更换字符串。本文章紧张先容了3中字符处理函数。
1. strlen()函数,获取指定字符串的长度,如下;
intstrlen(string str);
运用strlen函数来获取指定字符串的长度,代码如下:
Echo strlen(“编程快乐吗?”);
2. substr()函数,截取指定字符串中指定长度的字符串。语法如下
string substr(string str,int start,int length)
解释
参数
解释
Str
字符串工具
Start
开始截取的位置
Length
截取字符串的个数
如代码
Echo substr("happy new year?",5,9);
结果:new year
3. str_ireplace()函数利用新的字符串更换原始字符串中指定的字符串。
语法如下:
Mixed str_ireplace(mixed search,mixed replace,mixed subject[int&count]);
参数
解释
Search
必要,指定须要查找的字符串
Replace
必要,指定更换值
Subject
必要,找着范围
Count
非必要,获取实行更换的数量
大略演示代码:
echo str_ireplace("天下","Shanghai","Hello 天下!");
echo str_ireplace("猫","狗","我喜好猫!");