PHP常用字符串函数

字符串的常用方法

1.取字符串的长度:strlen();

2.拆分字符串: explode();

3.合并字符串: implode();

4.截取字符串: substr();

5.替换字符串: str_place();  查找替换

substr_replace();指定位置替换

6.去空格: trim();

7.转大写:strtoupper();

8.转小写:strtolower();

9.根据长度拆分: str_split();

你可能感兴趣的:(PHP常用字符串函数)