php explode用於把字串打散為數組,explode函數的使用語法是“explode(separator,string,limit)”,其參數separator規定在哪裡分割字串,參數string表示要分割的字串。
本文操作環境:windows7系統、PHP7.1版,DELL G3電腦
explode()
函數把字串打散為數組。
註解:"separator" 參數不能是空字串。
註解:此函數是二進位安全的。
語法
explode(separator,string,limit)
參數
separator 必要。規定在哪裡分割字串。
string 必需。要分割的字串。
limit
可選。規定所傳回的數組元素的數目。
可能的值:
大於0 - 傳回包含最多limit 個元素的陣列
小於0 - 傳回包含除了最後的-limit 個元素以外的所有元素的陣列
0 - 傳回包含一個元素的陣列
【推薦學習:《PHP影片教學》】
範例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)); ?>
以上是php explode用法是什麼的詳細內容。更多資訊請關注PHP中文網其他相關文章!