Blogger Information
Blog 36
fans 0
comment 0
visits 28233
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP基础知识——字符串函数示例
phpcn_u202398
Original
586 people have browsed it

1、chunk_split()函数

  • 把字符串分割成更小的部分

语法

  • chunk_split(string,length,end);
代码示例
  1. <?php
  2. $str = "holle word";
  3. echo chunk_split($str,2,',')."<br>";
  4. echo chunk_split($str,3,',')."<br>";
  5. ?>

2、explode()函数

  • 使用一个字符串分割另一个字符串,并返回由字符串组成的数组

语法

  • explode(“分割符”,$string,limit)
代码示例
  1. <?php
  2. $str = "one,two,three,apple,blue";
  3. print_r(explode(",",$str,2)) ;
  4. print_r(explode("t",$str,5)) ;

3、implode()函数

  • 返回一个由数组元素组合成的字符串

语法

  • implode(“元素之间放置的内容”,array);
    代码示例
  1. <?php
  2. $str =array('holle', 'jack' , 'welcome' ,'to', 'city') ;
  3. echo implode(" ",$str);
  4. ?>

4、md5()函数

  • md5加密

语法

  • MD5(string);
代码示例
  1. <?php
  2. $str = "hello world";
  3. echo md5($str);
  4. ?>

5、strlen()函数

  • 返回给定的字符串 string 的长度。

语法

  • strlen( string );
代码示例
  1. <?php
  2. $str = "hello PHP";
  3. echo strlen( $str);
  4. ?>

6、str_repeat()函数

  • 返回重复后的字符串

语法

  • str_repeat( string , int);
代码示例
  1. <?php
  2. $str = "-*+*-/";
  3. echo str_repeat( $str , 5);
  4. ?>

7、str_replace()函数

  • 该函数返回替换后的数组或者字符串
    语法
  • str_replace($search,$replace,string, int)
代码 示例
  1. <?php
  2. $str = "hello world";
  3. $str1 = str_replace("l","",$str,$count) ;
  4. echo $count;
  5. ?>

8、substr_count()函数

  • 统考某个子串的出现的频率

语法

  • substr_count($str, $needel, $start, $length)

    代码示例
    1. <?php
    2. $str = "hello world";
    3. echo substr_count($str, 'o'), '<br>';
    4. ?>

9、str_pad()

  • 将字符串填充到指定长度

语法
str_pad(string,length,”填充字符”)

代码示例
  1. <?php
  2. echo str_pad('hello', 10, '*+');
  3. ?>

10、wordwrap()函数

  • 打断字符串为指定数量的字串

语法

  • wordwrap( string $str[, int $width = 75[, string $break = “\n”[, bool $cut = FALSE]]] )
代码示例
  1. <?php
  2. $str = "helloworld";
  3. echo wordwrap($str,5,"——",true);
  4. ?>

11、ucfirst()

  • 将字符串的首字母转换为大写

语法

  • ucfirst(string)
代码示例
  1. <?php
  2. $str = "hello world";
  3. echo ucfirst($str);
  4. ?>

学习总结

本节课我们学习了字符串函数,通过本节课的学习我学到了一些新的字符串函数,最重要的是学会看手册使用字符串函数,本节课的学习收获满满。

Correcting teacher:天蓬老师天蓬老师

Correction status:qualified

Teacher's comments:这才几个函数, 不能知足
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post