你獲取過來的內(nèi)容應(yīng)該是json格式的吧 直接轉(zhuǎn)換成數(shù)組不就好了
創(chuàng)新互聯(lián)-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價比海豐網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式海豐網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋海豐地區(qū)。費(fèi)用合理售后完善,十余年實(shí)體公司更值得信賴。
1. php中增加數(shù)組元素的方法:
(1)通過賦值增加數(shù)組元素 :$states[‘name’]=’Tom’;
(2)int array_push(array target_array,mixed variable [,mixed variable…]) 函數(shù)將variable增加到target_array的末尾,成功時返回true,否則返回false,其中variable可以是多個;
(3)int array_unshift(array target_array,mixed variable [,mixed variable…]) 函數(shù)將variable增加到target_array的數(shù)組頭,成功時返回true,否則返回false,其中variable可以是多個。所有已有的數(shù)值鍵都會相應(yīng)地修改,而關(guān)聯(lián)鍵不受影響;
(4)array array_pad(array target_array,integer length,mixed pad_value) 將target_array 的大小增加到length指定的長度。
具體方法:
1.使用array_merge方法實(shí)現(xiàn)類似array_unshift在開頭添加元素的功能
代碼如下:
?php
$queue = array('a', 'B');
$queue = array_merge(array('front' = 'hello'), $queue);
/*
Array
(
[front] = hello
[0] = a
[1] = b
)
*/
?
2.+操作符
代碼如下:
?php
$queue = array('a', 'B');
$queue = array('front' = 'Hello') + $queue;
?
輸出結(jié)果與使用array_merge方法一樣。
3.在元素結(jié)尾添加關(guān)聯(lián)數(shù)組元素
代碼如下:
?php
$queue = array('a', 'B');
$queue['front'] = 'hello';
/*
輸出
Array
(
[0] = a
[1] = b
[front] = hello
)
*/
?
在PHP里面,往數(shù)組中追加元素最簡單的方法是使用[]賦值,例如需要在$arr添加一條123的語句是$arr[]=123,可以參考下面的代碼:
?php
$arr=[123,456];
print_r($arr);
$arr[]=789;
print_r($arr);
?
擴(kuò)展資料:
PHP函數(shù)
constant() 函數(shù)返回常量的值。
connection_status() 函數(shù)返回當(dāng)前的連接狀態(tài)。
connection_aborted() 函數(shù)檢查是否斷開客戶機(jī)。
zip_read()() 函數(shù)讀取打開的 zip 檔案中的下一個文件。
zip_open() 函數(shù)打開 ZIP 文件以供讀取。
zip_entry_read() 函數(shù)從打開的 zip 檔案項(xiàng)目中獲取內(nèi)容。
zip_entry_open() 函數(shù)打開一個 ZIP 檔案項(xiàng)目以供讀取。
參考資料來源:百度百科-PHP (超文本預(yù)處理器)
lxydjx 正解,我來詳細(xì)補(bǔ)充一下吧。未經(jīng)測試、、、
//初始化
$sql = array();
// 從 a.php POST 過來的值
$_POST["xinxi"] = "20-2,19-1,18-1";
// 拆分為 array("20-2", "19-1", "18-1");
$post_data = explode(",", $_POST["xinxi"]);
// 循環(huán)數(shù)組
for($i = 0; $i count($post_data); $i++) {
// 再次拆分每一條信息為 array("20", "2"), array("19", "1"), array("18", "1")
$details = explode("-", $post_data[$i]);
// 將每一條信息添加到 $sql 數(shù)組中
array_push($sql, "(20121015194535193356, ".$details[0].", ".$details[1].")");
}
// 用 , 連接,轉(zhuǎn)換為 string
$sql = implode(",", $sql);
// 插入數(shù)據(jù)庫
mysql_query("INSERT INTO table_sales (dingid, detailsid, buynumber) VALUES ($sql)");