?php
成都創(chuàng)新互聯(lián)是專業(yè)的漳平網(wǎng)站建設(shè)公司,漳平接單;提供成都網(wǎng)站建設(shè)、網(wǎng)站制作,網(wǎng)頁設(shè)計(jì),網(wǎng)站設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行漳平網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴(kuò)展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來合作!
$arr?=?array(
0?=?1100,
1?=?'天津市',
2?=?2210,
3?=?'沈陽市'
);
$sql?=?'';
foreach?($arr?as?$k?=?$v)?{
if?($k?%?2?==?0)?{
$no?=?$v;
continue;
}?else?{
$city?=?$v;
}
echo?"INSERT?INTO?tablename?(no,?city)?VALUES?($no,?$city)";
}
?
結(jié)果:
INSERT INTO tablename (no, city) VALUES (1100, 天津市)
INSERT INTO tablename (no, city) VALUES (2210, 沈陽市)
sql語句已經(jīng)輸出的,你query下就行,按照自己的數(shù)據(jù)套吧.
上面那個(gè)回答運(yùn)行不怎么對(duì)
利用PHP對(duì)數(shù)組賦值時(shí)下標(biāo)變量會(huì)自動(dòng)遞增的特點(diǎn),可以很方便用循環(huán)將數(shù)據(jù)存入一個(gè)數(shù)組。例如:$arr[] = 'a'; 這條語句會(huì)將字符a存入數(shù)組變量$arr中,如果$arr不存在則會(huì)新建一個(gè);若已存在,則將$arr數(shù)組的下標(biāo)變量遞增1后存入字符。也就是說,如果已有$arr[0]='a', 那么執(zhí)行 $arr[] = 'b'; 后,數(shù)組其實(shí)是進(jìn)行了$arr[1] = 'b' 的操作。
$data=array(); //創(chuàng)建臨時(shí)變量用以存儲(chǔ)數(shù)據(jù)
$length=count($你的array名['cwidth']); //數(shù)你有多少行數(shù)據(jù)
for($i=0; $i=$length; $i++){ //循環(huán)
$data[$i]['cwidth']=$你的array名['cwidth'];
$data[$i]['cheight']=$你的array名['cheight'];
}
出來的數(shù)據(jù)就像是這樣:
array(2){
[0]=array(2){
['cwidth']=string(5) "593px"
['cheight']=string(5) "203px"
}
[1]=array(2){
['cwidth']=string(5) "598px"
['cheight']=string(5) "111px"
}
}
然后再用$db-add($data);插入數(shù)據(jù)