explode()函數將字符串分割爲數組 php
語法 數組
explode(separator,string,limit)
參數 | 描述 |
---|---|
separator | 必需。規定在哪裏分割字符串。 |
string | 必需。要分割的字符串。 |
limit | 可選。規定所返回的數組元素的最大數目。 |
本函數返回由字符串組成的數組,其中的每一個元素都是由 separator 做爲邊界點分割出來的子字符串。 函數
separator 參數不能是空字符串。若是 separator 爲空字符串(""),explode( spa
若是設置了 limit 參數,則返回的數組包含最多 limit 個元素,而最後那個元素將包含 string 的剩餘部分。 code
若是 limit 參數是負數,則返回除了最後的 -limit 個元素外的全部元素。此特性是 PHP 5.1.0 中新增的。 字符串
#在本例中,咱們將把字符串分割爲數組: <?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. )經常使用的應用場景
1.explode('&', $_SERVER['QUERY_STRING']);
string