请输入您要查询的百科知识:

 

词条 explode
释义

explode() 函数把字符串分割为数组。本函数返回由字符串组成的数组,其中的每个元素都是由 separator 作为边界点分割出来的子字符串。

英文单词

explode英标是 [ik'spləud]

英文解释:

vi. 爆炸,爆发;激增

vt. 使爆炸;爆炸;推翻英文例句:Are you guys still not talking to each other?

Not only is he still not talking to me, But there's this thing he does where he stares at you And tries to get your brain to explode.

你们还是谁也不理谁吗?

他不但还是不跟我说话,还会这么瞪着你,并做这么个动作,试图把你的脑子弄爆。

PHP explode() 函数

语法:

explode(separator,string,limit)

参数 描述

separator 必需。规定在哪里分割字符串。

string 必需。要分割的字符串。

limit 可选。规定所返回的数组元素的最大数目。

说明

separator参数不能是空字符串。如果 separator为空字符串(""),explode() 将返回 FALSE。如果 separator所包含的值在 string中找不到,那么 explode() 将返回包含 string中单个元素的数组。

如果设置了 limit参数,则返回的数组包含最多 limit个元素,而最后那个元素将包含 string的剩余部分。

如果 limit参数是负数,则返回除了最后的 -limit个元素外的所有元素。此特性是 PHP 5.1.0 中新增的。

explode() 例子

把字符串分割为数组:

<?php $str = "Hello world. It's a beautiful day."; print_r(explode(" ",$str));?>输出:

Array( [0] => Hello [1] => world. [2] => It's [3] => a [4] => beautiful [5] => day.)

limit 参数例子

<?php

$str = 'one|two|three|four';

// 正数的 limit

print_r(explode('|', $str, 2));

// 负数的 limit(自 PHP 5.1 起)

print_r(explode('|', $str, -1));

?>

上例将输出:

Array(

[0] => one

[1] => two|three|four

)

Array(

[0] => one

[1] => two

[2] => three

)

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2024/11/16 20:56:47