php explode函數用來把字串打散為數組,其語法是explode(separator,string,limit),參數separator必需,規定在哪裡分割字串;string必需,指要分割的字串。
php explode函數怎麼用?
定義與用法
explode() 函數把字串打散為陣列。
註解:"separator" 參數不能是空字串。
註解:此函數是二進位安全的。
語法
explode(separator,string,limit)
參數
separator 必要。規定在哪裡分割字串。
string 必需。要分割的字串。
limit 可選。規定所傳回的數組元素的數目。
可能的值:
大於0 - 傳回包含最多limit 個元素的陣列
小於0 - 傳回包含除了最後的-limit 個元素以外的所有元素的陣列
0 - 傳回包含一個元素的陣列
# 傳回值: 傳回字串的陣列
PHP 版本: 4
更新日誌:
在PHP 4.0.1 中,新增了limit 參數。在 PHP 5.1.0 中,新增了對負數 limit 的支援。
範例1
使用limit 參數來傳回一些陣列元素:
<?php $str = 'one,two,three,four'; // 零 limit print_r(explode(',',$str,0)); // 正的 limit print_r(explode(',',$str,2)); // 负的 limit print_r(explode(',',$str,-1)); ?>
輸出:
Array ( [0] => one,two,three,four ) Array ( [0] => one [1] => two,three,four ) Array ( [0] => one [1] => two [2] => three )
實例2
把字串打散為陣列:
<?php $str = "Hello world. I love Shanghai!"; print_r (explode(" ",$str)); ?>
輸出:
Array ( [0] => Hello [1] => world. [2] => I [3] => love [4] => Shanghai! )
以上是php explode函數怎麼用?的詳細內容。更多資訊請關注PHP中文網其他相關文章!