php 字符串重要函数
2021-06-27 06:05
标签:char htm ring sha mit nan strong style split() 1、chop() 从字符串右端移除字符 chop(string,charlist) ps. charlist参数是可选的,如果不填,默认移除 2、chunk_split() 把字符串分割为一连串更小的部分。 chunk_split(string,length,end) 3、explode() 把字符串打散为数组。 explode(separator,string,limit) ps. limit可选,规定所返回的数组元素的数目。 4、htmlspecialchars() 把预定义的字符转换为 HTML 实体。 htmlspecialchars(string,flags,character-set,double_encode) 5、implode() //别名为join() 返回由数组元素组合成的字符串。 implode(separator,array) ps. separator可选。规定数组元素之间放置的内容。默认是 ""(空字符串)。 6、lcfirst() 把字符串中的首字符转换为小写。 lcfirst(string) php 字符串重要函数 标签:char htm ring sha mit nan strong style split() 原文地址:http://www.cnblogs.com/xlj-code/p/7148077.html$str="hello world~";
echo chop($str,"ld~"); //hello wor
$str="hello world~";
echo chunk_split($str,1,"."); //h.e.l.l.o. .w.o.r.l.d.~.
$str="beijing,shanghai,nanjing,tianjing,anqing";
print_r(explode(",",$str,3)); //Array ( [0] => beijing [1] => shanghai [2] => nanjing,tianjing,anqing )
$str="hello world~";
echo htmlspecialchars($str); //hello world~
$arr=array("shanghai,nanjing,beijing,tianjing,anqing");
echo implode(" ",$arr); //shanghai,nanjing,beijing,tianjing,anqing
$arr="Hello world";
echo lcfirst($arr); //hello world
上一篇:tp 框架 -文件上传
下一篇:22 css中长度值标签的用法