explode()函数
在PHP中,explode()函数是一个字符串函数,它将一个字符串分割成一个数组,使用指定的分隔符将字符串拆分为子字符串,并返回分割后的字符串数组。语法如下:
```
array explode ( string delimiter , string string [, int limit = PHP_INT_MAX ] )
```
参数说明:
- `delimiter`:指定的分隔符,字符串类型。
- `string`:需要分割的字符串,字符串类型。
- `limit`:可选参数,指定返回数组元素数量的最大值,默认是PHP_INT_MAX。
返回值:返回分割后的字符串数组。
示例:
以下示例将把字符串 `"Hello World! This is an example."` 根据空格字符 `' '` 分割成数组:
```php
str = "Hello World! This is an example.";
array = explode(" ", str);
print_r(array);
```
输出结果:
字符串转数组去除空格 ```
Array
(
[0] => Hello
[1] => World!
[2] => This
[3] => is
[4] => an
[5] => example.
)
```
在此示例中,变量 `str` 包含需要分割的字符串。`explode()` 函数使用空格字符作为分隔符,并把字符串分割成一个包含 6 个字符串的数组。调用 `print_r()` 函数打印输出数组结果。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论