PHP接收json 并将接收数据插入数据库的实现代码

网络编程 2025-03-13 01:49www.168986.cn编程入门

一、接收JSON数据

我们需要接收前端传来的JSON数据。这通常是通过HTTP POST请求实现的。在你的PHP代码中,可以使用`$_POST`全局变量来获取这些数据。假设你接收的数据如下:

```json

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"}]}

```

二、JSON并获取值

PHP提供了`json_decode`函数,可以轻松地将JSON字符串解码为PHP对象或数组。在这个例子中,我们可以将JSON字符串解码为一个数组,然后获取我们需要的值。例如:

```php

$post_array = $_POST['post_array']; // 获取提交的JSON字符串

$obj = json_decode($post_array, true); // 将JSON字符串解码为数组

```

然后,你可以通过`$obj['key']`的方式获取你需要的数据。例如:`$order_id = $obj['order_id'];`。

```php

foreach ($obj["json_list"] as $item) {

$list_product_id[] = $item["product_id"];

$list_product_number[] = $item["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();

```

上一篇:jQuery获取当前点击的对象元素(实现代码) 下一篇:没有了

Copyright © 2016-2025 www.168986.cn 狼蚁网络 版权所有 Power by