1、chunk_split()函数
- 把字符串分割成更小的部分
语法
- chunk_split(string,length,end);
代码示例
<?php
$str = "holle word";
echo chunk_split($str,2,',')."<br>";
echo chunk_split($str,3,',')."<br>";
?>
2、explode()函数
- 使用一个字符串分割另一个字符串,并返回由字符串组成的数组
语法
- explode(“分割符”,$string,limit)
代码示例
<?php
$str = "one,two,three,apple,blue";
print_r(explode(",",$str,2)) ;
print_r(explode("t",$str,5)) ;
3、implode()函数
- 返回一个由数组元素组合成的字符串
语法
<?php
$str =array('holle', 'jack' , 'welcome' ,'to', 'city') ;
echo implode(" ",$str);
?>
4、md5()函数
- md5加密
语法
- MD5(string);
代码示例
<?php
$str = "hello world";
echo md5($str);
?>
5、strlen()函数
- 返回给定的字符串 string 的长度。
语法
- strlen( string );
代码示例
<?php
$str = "hello PHP";
echo strlen( $str);
?>
6、str_repeat()函数
- 返回重复后的字符串
语法
- str_repeat( string , int);
代码示例
<?php
$str = "-*+*-/";
echo str_repeat( $str , 5);
?>
7、str_replace()函数
- 该函数返回替换后的数组或者字符串
语法
- str_replace($search,$replace,string, int)
代码 示例
<?php
$str = "hello world";
$str1 = str_replace("l","",$str,$count) ;
echo $count;
?>
8、substr_count()函数
- 统考某个子串的出现的频率
语法
substr_count($str, $needel, $start, $length)
代码示例
<?php
$str = "hello world";
echo substr_count($str, 'o'), '<br>';
?>
9、str_pad()
- 将字符串填充到指定长度
语法
str_pad(string,length,”填充字符”)
代码示例
<?php
echo str_pad('hello', 10, '*+');
?>
10、wordwrap()函数
- 打断字符串为指定数量的字串
语法
- wordwrap( string $str[, int $width = 75[, string $break = “\n”[, bool $cut = FALSE]]] )
代码示例
<?php
$str = "helloworld";
echo wordwrap($str,5,"——",true);
?>
11、ucfirst()
- 将字符串的首字母转换为大写
语法
- ucfirst(string)
代码示例
<?php
$str = "hello world";
echo ucfirst($str);
?>
学习总结
本节课我们学习了字符串函数,通过本节课的学习我学到了一些新的字符串函数,最重要的是学会看手册使用字符串函数,本节课的学习收获满满。