php 字符串函数 分类,PHP字符串函数示例
时间: 2023-07-27 21:12:38 浏览: 109
PHP字符串函数可以分为以下几类:
1. 字符串操作函数:用于对字符串进行操作,如拼接、替换、截取等。常用函数有:strlen、substr、str_replace、str_pad等。
示例:
获取字符串长度:
```
$str = "hello world";
$length = strlen($str); // $length = 11
```
截取字符串:
```
$str = "hello world";
$sub_str = substr($str, 0, 5); // $sub_str = "hello"
```
替换字符串:
```
$str = "hello world";
$new_str = str_replace("world", "php", $str); // $new_str = "hello php"
```
2. 字符串格式化函数:用于对字符串进行格式化,如大小写转换、去除空格等。常用函数有:strtolower、strtoupper、trim等。
示例:
将字符串转换为大写:
```
$str = "hello world";
$new_str = strtoupper($str); // $new_str = "HELLO WORLD"
```
去除字符串中的空格:
```
$str = " hello world ";
$new_str = trim($str); // $new_str = "hello world"
```
3. 字符串查询函数:用于查询字符串中是否包含某个子串或者某个字符的位置。常用函数有:strpos、strrpos、strstr等。
示例:
查询字符串中是否包含某个子串:
```
$str = "hello world";
$pos = strpos($str, "world"); // $pos = 6
```
查询字符在字符串中最后一次出现的位置:
```
$str = "hello world";
$pos = strrpos($str, "o"); // $pos = 7
```
4. 字符串编码函数:用于对字符串进行编码和解码。常用函数有:urlencode、urldecode、base64_encode、base64_decode等。
示例:
将字符串进行 URL 编码:
```
$str = "hello world";
$new_str = urlencode($str); // $new_str = "hello+world"
```
将字符串进行 Base64 编码:
```
$str = "hello world";
$new_str = base64_encode($str); // $new_str = "aGVsbG8gd29ybGQ="
```
阅读全文