PHP接收json 并將接收數(shù)據(jù)插入數(shù)據(jù)庫的實(shí)現(xiàn)代碼
更新時(shí)間:2015年12月01日 12:15:28 作者:Hola
這篇文章主要介紹了PHP接收json 并將接收數(shù)據(jù)插入數(shù)據(jù)庫的實(shí)現(xiàn)代碼,需要的朋友可以參考下
最近有一個(gè)需求,前端向后臺(tái)提交json,后臺(tái)解析并且將提交的值插入數(shù)據(jù)庫中,
難點(diǎn)
1、php解析json(這個(gè)不算難點(diǎn)了,網(wǎng)上實(shí)例一抓一大把)
2、解析json后,php怎樣拿到該拿的值
<?php
require ('connect.php');
/*
本例用到的數(shù)據(jù):
post_array={"order_id":"0022015112305010013","buyer_id":"2","seller_id":"1","all_price":"100.00","json_list":[{"product_id":"3","product_number":"3"},{"product_id":"8","product_number":"2"},{"product_id":"10","product_number":"4"}]}
*/
$post_array=$_POST['post_array'];
//--解析Json,獲取對(duì)應(yīng)的變量值
$obj=json_decode($post_array,TRUE);
$order_id = $obj['order_id'];
$buyer_id = $obj['buyer_id'];
$seller_id = $obj['seller_id'];
$all_price = $obj['all_price'];
$i=0;//循環(huán)變量
//--得到Json_list數(shù)組長(zhǎng)度
$num=count($obj["json_list"]);
//--遍歷數(shù)組,將對(duì)應(yīng)信息添加入數(shù)據(jù)庫
for ($i;$i<$num;$i++)
{
$list_product_id[]=$obj["json_list"][$i]["product_id"];
$list_product_number[]=$obj["json_list"][$i]["product_number"];
$insert_order_product_sql="INSERT INTO tbl_order_product (order_id,product_id,product_number) VALUES (?,?,?)";
$result = $sqlconn -> prepare($insert_order_product_sql);
$result -> bind_param("sss", $order_id,$list_product_id[$i],$list_product_number[$i]);
$result->execute();
}
//--添加訂單信息
$insert_order_sql="INSERT INTO tbl_order (order_id,buyer_id,seller_id,all_price) VALUES (?,?,?,?)";
$result=$sqlconn->prepare($insert_order_sql);
$result->bind_param("ssss",$order_id,$buyer_id,$seller_id,$all_price);
$result->execute();
$result -> close();
$sqlconn -> close();
?>
投稿者信息
昵稱: Hola
Email: jamcistos@outlook.com
您可能感興趣的文章:
相關(guān)文章
PHP調(diào)用存儲(chǔ)過程返回值不一致問題的解決方法分析
這篇文章主要介紹了PHP調(diào)用存儲(chǔ)過程返回值不一致問題的解決方法,結(jié)合實(shí)例形式分析了存儲(chǔ)過程調(diào)用返回值不一致的原因與解決方法,需要的朋友可以參考下2016-04-04
php通過pecl方式安裝擴(kuò)展的實(shí)例講解
下面小編就為大家分享一篇php通過pecl方式安裝擴(kuò)展的實(shí)例講解,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來看看吧2018-02-02
php+redis實(shí)現(xiàn)消息隊(duì)列功能示例
這篇文章主要介紹了php+redis實(shí)現(xiàn)消息隊(duì)列功能,結(jié)合實(shí)例形式分析了php+redis創(chuàng)建與使用消息隊(duì)列的相關(guān)操作技巧,需要的朋友可以參考下2019-09-09

