PHP explode() 函數(shù)
PHP explode() 函數(shù)
實(shí)例
把字符串打散為數(shù)組:
<?php
$str = "www.runoob.com";
print_r (explode(".",$str));
?>
運(yùn)行實(shí)例 ?
定義和用法
explode() 函數(shù)使用一個(gè)字符串分割另一個(gè)字符串,并返回由字符串組成的數(shù)組。
注釋:"separator" 參數(shù)不能是一個(gè)空字符串。
注釋:該函數(shù)是二進(jìn)制安全的。
語(yǔ)法
explode(separator,string,limit)
參數(shù) | 描述 |
---|---|
separator | 必需。規(guī)定在哪里分割字符串。 |
string | 必需。要分割的字符串。 |
limit | 可選。規(guī)定所返回的數(shù)組元素的數(shù)目。 可能的值:
|
技術(shù)細(xì)節(jié)
返回值: | 返回字符串?dāng)?shù)組。 |
---|---|
PHP 版本: | 4+ |
更新日志: | 在 PHP 4.0.1 中,新增了 limit 參數(shù)。在 PHP 5.1.0 中,新增了對(duì)負(fù)數(shù) limits 的支持。 |
更多實(shí)例
實(shí)例 1
使用 limit 參數(shù)來(lái)返回一些數(shù)組元素:
<?php
$str = 'one,two,three,four';
// 返回包含一個(gè)元素的數(shù)組
print_r(explode(',',$str,0));
print "<br>";
// 數(shù)組元素為 2
print_r(explode(',',$str,2));
print "<br>";
// 刪除最后一個(gè)數(shù)組元素
print_r(explode(',',$str,-1));
?>
運(yùn)行實(shí)例 ?

相關(guān)文章
- PHP If Else 語(yǔ)句
- PHP 魔術(shù)常量
- PHP $_GET 變量
- PHP 高級(jí)過(guò)濾器
- PHP array_change_key_case() 函數(shù)
- PHP array_flip() 函數(shù)
- PHP array_intersect_ukey() 函數(shù)
- PHP array_sum() 函數(shù)
- PHP array_unique() 函數(shù)
- PHP array_values() 函數(shù)
- PHP array_walk_recursive() 函數(shù)
- PHP asort() 函數(shù)
- PHP krsort() 函數(shù)
- PHP prev() 函數(shù)
- PHP reset() 函數(shù)
- PHP sizeof() 函數(shù)
- PHP sort() 函數(shù)
- PHP uksort() 函數(shù)
- PHP cURL 函數(shù)
- PHP PDO