欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php字符串函数(3)

程序员文章站 2022-05-01 17:28:36
...
七:字符串截取函数 :str_replace(find,replace,string,count);
substr_replace(string,replace,start,length);
$msg = "hello,word I love php";
$rs = substr_replace($msg,"mysql",-3,3);
echo$rs."
"
; $rsl = str_replace("word", "php", $msg); echo$rsl;

如下图所示,substr_replace(string,replace,start,length);主要针对字符串里的位置进行的替换。string是
所查找的字符串,replace是要进行替换的字符,start是替换开始的位置(若为正数,从左开始查找。为负数,从右开始查找),length(可选。若不选择,则表示把开始的位置后的全部字符替换)表示要替换的长度。

str_replace(find,replace,string,count); find表示要进行替换的字符。replace表示要被替换的字符。string表示要查找的字符串。count表示执行的次数(可选)。此函数对大小写敏感。对大小写不敏感的str_ireplace();用法和str_replace()是相同的。

php字符串函数(3)


八:比较字符串函数 strcmp(str1,str2). strcasecmp(str1,str2);

$msg1 = "hello";
    $msg2 = "HELLO";
    echo strcmp($msg1, $msg2)."
"
; echo strcasecmp($msg1 ,$msg2);

结果如下图。两个函数的区别是strcmp()是小写敏感的,strcasecmp()对大小写不敏感。
当比较的字符相同时,返回值为0. 当str1 > str2时,返回值大于0。
当str1 php字符串函数(3)

九:字符串大小写的转换 strtolower (); strtoupper (); ucfirst(); ucwords();

$str = "I AM PETAL";
echo strtolower($str)."
"
; //大写转换为小写$stra = "i am petal"; echo strtoupper($stra)."
"
; // 小卫转换为大写echo ucfirst($stra)."
"
; //只将字符串的第一个字符转换为大写echo ucwords($stra); //将字符串每一个单词的首字母转换为大写

得出结果如下

php字符串函数(3)

以上就介绍了php字符串函数(3),包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。