php中利用explode函數(shù)分割字符串到數(shù)組
php中利用explode函數(shù)分割字符串到數(shù)組
文章主要介紹了php中利用explode函數(shù)分割字符串到數(shù)組,需要的朋友可以參考下。
(資料圖片)
分割字符串
//利用 explode 函數(shù)分割字符串到數(shù)組
復(fù)制代碼 代碼如下:
$source = "hello1,hello2,hello3,hello4,hello5";//按逗號(hào)分離字符串
$hello = explode(",",$source);
for($index=0;$index { echo $hello[$index];echo ""; } ?> //split函數(shù)進(jìn)行字符分割 // 分隔符可以是斜線,點(diǎn),或橫線 復(fù)制代碼 代碼如下: $date = "04/30/1973"; list($month, $day, $year) = split ("[/.-]", $date); echo "Month: $month; Day: $day; Year: $year ?> 通過數(shù)組實(shí)現(xiàn)多條件查詢的代碼 復(fù)制代碼 代碼如下: $keyword="asp php,jsp"; $keyword=str_replace(" ?"," ",$keyword); $keyword=str_replace(" ",",",$keyword); $keyarr=explode(",",$keyword); for($index=0;$index { $whereSql .= " And (arc.title like "%$keyarr[$index]%" Or arc.keywords like "%$keyarr[$index]%") "; } echo $whereSql;
\n";
詞條內(nèi)容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學(xué)等領(lǐng)域),建議您咨詢相關(guān)領(lǐng)域?qū)I(yè)人士。