//1. strlen 返回字符串长度
$str = 'xiaohu';
$new_str=strlen($str);// 返回结果 6
//2. strrev 反转字符串
$str = 'xiaohu';
$new_str=strrev($str);//返回结果 uhoaix
//3.str_replace 字符串替换
//hu 需要替换的字符 lu 替换成的字符 $str 需要替换字符换
$str = 'xiaohu';
$new_str=str_replace('hu','lu',$str);//返回结果 xiaolu
//4. str_split 字符串分为数组
$str = 'xiaohu';
$new_str=str_split($str,'2');//返回结果 array('xi','ao','hu')
//5. rtrim 删除字符串末端的空白字符 ltrim 删除字符串前面的空白字符 trim 前面活后面的空白字符
//6. strtolower 字符串转换为小写
$str ='XIAOHU';
$new_str=strtolower($str)// 返回结果 xiaohu
//7. strtoupper 字符串转为大写
$str ='xiaohu';
$new_str=strtolower($str)// 返回结果 XIAOHU
//8. explode 字符串分隔为数组
$str = 'xia,ohu';
$new_str=explode(',',$str);//根据, 分为数组
//9. implode 数组转为字符串 同上
|