码迷,mamicode.com
首页 > Web开发 > 详细

PHP字符串函数

时间:2015-08-31 23:53:30      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:php 字符串函数


1 strlen()

 计算字符串的长度。

 strlen(‘hello‘);

2 substr( );

  截取字符串,三个参数, string, start , length

 1) substr(string,start)-->得到以strat为起点的字符串。 

    备注:起点也是从0开始的

 2)substr(string,-1)--》如果是负数,得到原字符串尾部的一个字符串。

 

 3) substr(string, start , length) 得到指定长度的字符串。


3 explode(分隔方式,字符串,数量);  -----》implode() ,join函数相反的效果。

  分割之后返回的是一个数组。

 

  $email =‘278423229@qq.com‘;

  $email_array = explode(‘@‘,$email);

  echo $email_array[1];


4 strtolower(); strtoupper(); 字符串大小写转换


5     

 

本文出自 “攻城狮” 博客,请务必保留此出处http://crazyzxl.blog.51cto.com/8781147/1690347

PHP字符串函数

标签:php 字符串函数

原文地址:http://crazyzxl.blog.51cto.com/8781147/1690347

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!