PHP explode函數用於使用一個字串分割另一個字串,其語法是explode(separator,string,limit),參數separator 必需,指規定在哪裡分割字串;string必需,指要分割的字符串。
php explode函數怎麼用?
#php explode()函數語法
作用:把字串打散為陣列
語法:
explode(separator,string,limit)
參數:
separator 必要。規定在哪裡分割字串。
string 必需。要分割的字串。
limit 可選。規定所傳回的數組元素的數目。可能的值:大於0 - 傳回包含最多limit 個元素的數組,小於0 - 傳回包含除了最後的-limit 個元素以外的所有元素的數組,0 - 傳回包含一個元素的數組
#說明:
把字串打散為陣列。 "separator" 參數不能是空字串。該函數是二進制安全的。
php explode()函數使用範例1:
<?php $str = "Hello world. I'm study in php.cn!"; print_r (explode(".",$str)); ?>
輸出:
Array ( [0] => Hello world [1] => I'm study in php [2] => cn! )
php explode()函數使用範例2:
<?php $arr = "Learning PHP is a good choice"; print_r(explode(" ", $arr)); ?>
輸出:
Array ( [0] => Learning [1] => PHP [2] => is [3] => a [4] => good [5] => choice )
這篇文章就是關於PHP explode函數的介紹,希望對需要的朋友有幫助!
以上是php explode函數怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!