?php
創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供瑞麗網(wǎng)站建設(shè)、瑞麗做網(wǎng)站、瑞麗網(wǎng)站設(shè)計(jì)、瑞麗網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計(jì)與制作、瑞麗企業(yè)網(wǎng)站模板建站服務(wù),10余年瑞麗做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價(jià)值的思路和整體網(wǎng)絡(luò)服務(wù)。
$aaa?=?"寬巖拆123456"慎棗;
$bbb?=?implode(?'棗茄,',?str_split(?$aaa?)?);
echo?$bbb;
?
介紹兩個(gè)函數(shù)給你
?php
//利用 explode 函數(shù)分棗孝如割字符串到數(shù)組
$source = "hello1,hello2,hello3,hello4,hello5"凳啟;//按逗號(hào)分離字符串
$hello = explode(',',$source);
for($index=0;$indexcount($hello);$index++){
echo $hello[$index];echo "/br";
}
?
?php
//split函慎核數(shù)進(jìn)行字符分割
// 分隔符可以是斜線,點(diǎn),或橫線
$date = "04/30/1973";
list($month, $day, $year) = split ('[/.-]', $date);
echo "Month: $month; Day: $day; Year: $yearbr /\n";
?
用點(diǎn)連接符把兩個(gè)字符串連接起來,然后保存即可。
假設(shè)$a="abc"搜含;$b="def";
$c=$a.",".$b;
則,粗漏戚$c="abc,def";
3.然后按照正常的保存方式,保存到數(shù)據(jù)庫即可。
注意:這種方式,需要對(duì)a,b兩個(gè)字巖陵符串有一定的了解,比如,a,和b當(dāng)中,都不能有作為分隔符的逗號(hào),不然的話,如果將來再用逗號(hào)來分離的話,會(huì)有困難。
當(dāng)然,也可以自定義分離符號(hào)。
implode(","簡侍,$arr);//鏈接字符攔亂吵陪乎串,數(shù)組中間用逗號(hào)隔開
詳細(xì)字符串處理可以參考
;id=86class=2