PHP常用字符串函数
2018-03-20 本文已影响1人
Snailwang04
字符串的常用方法
1.取字符串的长度:strlen();
2.拆分字符串: explode();
3.合并字符串: implode();
4.截取字符串: substr();
5.替换字符串: str_place(); 查找替换
substr_replace();指定位置替换
6.去空格: trim();
7.转大写:strtoupper();
8.转小写:strtolower();
9.根据长度拆分: str_split();