资源描述:
《《php字符串函数》》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、字符串函数strlen计算字符串长度substr截取字符串,采用起点—长度方式。strstr截取字符串,采用子串—结尾方式。strpos查找子串在原串的出现位置,从0开始explode分割字符串,将字符串毁成数组。implode连接字符串,将数组毁成一排。trim去掉左右空格str_pad填充补齐strtoupper转为大写strtolower转为小写str_replace普通式替换strtr翻译式替换strrev字符反转strlen定义:intstrlen(stringstring)返回的是字节数。例子1.Astrlen()exa
2、mplesubstr定义stringsubstr(stringstring,intstart[,intlength])strart为起始位置,从0开始,length中长度。
3、f",0,4);//returns"abcd"$rest=substr("abcdef",0,8);//returns"abcdef“?>strstr定义:stringstrstr(string原串,string标识)截字原字符串中,从包含标识处到结尾的字符。If标识isnotfound,returnsFALSE.例子strpos定义:intstr
4、pos(stringhaystack,stringneedle[,intoffset])返回needls在haystack的出现位置。从0开始,0表示开始位置。未找到返回false,省略offset则从头查起,否则从offset指定的数值算起。explode定义:arrayexplode(stringseparato
5、r,stringstring[,intlimit])按标识拆分字符串。Separator为拆分标识,string不原煤字符串。拆分之后,得到的是数组类型。
6、st($user,$pass,$uid,$gid,$gecos,$home,$shell)=explode(":",$data);echo$user;//fooecho$pass;//*?>implode定义:stringimplode(stringglue,arraypieces)与explode正好相反,将数组变成字符串。glue为连接标识,pieces为数组。
7、;echo$comma_separated;//lastname,email,phone?>trimDescriptionstringtrim(stringstr[,stringcharlist])str为在处理的字符串;charlist为要去掉的内容。默认为去空格及rt。""(ASCII32(0x20)),anordinaryspace."t"(ASCII9(0x09)),atab.""(ASCII10(0x0A)),anewline(linefeed).“r”
8、ina9999";echo$str;echotrim($str);//表示去掉空格以及trechotrim($str,“t999”);//表示去掉t以及9.?>str_padstr_pad补充字符串