php 字符串转成数组
时间: 2024-04-17 17:21:52 浏览: 123
在PHP中,可以使用一些内置函数将字符串转换为数组。以下是几种常见的方法:
1. explode()函数:该函数可以将字符串按照指定的分隔符拆分成数组元素。
例如:
```php
$str = "apple,banana,orange";
$arr = explode(",", $str);
print_r($arr);
```
输出:
```
Array
(
=> apple
=> banana
=> orange
)
```
2. str_split()函数:该函数可以将字符串拆分为单个字符,并将每个字符作为数组元素。
例如:
```php
$str = "hello";
$arr = str_split($str);
print_r($arr);
```
输出:
```
Array
(
=> h
=> e
=> l
=> l
=> o
)
```
3. preg_split()函数:该函数可以使用正则表达式将字符串拆分为数组元素。
例如:
```php
$str = "apple,banana,orange";
$arr = preg_split("/,/", $str);
print_r($arr);
```
输出:
```
Array
(
=> apple
=> banana
=> orange
)
```
阅读全文