gpt4 book ai didi

mysql - PHP 获取 JSON 并通过 PDO 插入数据库

转载 作者:行者123 更新时间:2023-11-28 23:19:30 24 4
gpt4 key购买 nike

<分区>

我的 PHP 代码:

<?php
$host = ""; $db_name = ""; $username = ""; $password = "";

try {
$conn = new PDO("mysql:host=".$host.";dbname=".$db_name, $username, $password);
} catch (PDOException $e) {
echo 'Connection failed: ' . $e->getMessage();
}

$json = file_get_contents('');
$obj = json_decode($json, TRUE);

$stmt = $conn->prepare("INSERT INTO item_details (item_id,value,circulation) VALUES (:item_id,:value,:circulation");

foreach($obj['items'] as $key => $index) {
$item_id = $key;
$value = $index['value'];
$circulation = $index['circulation'];

$stmt->bindparam(":item_id", $item_id);
$stmt->bindparam(":value", $value);
$stmt->bindparam(":circulation", $circulation);
$stmt->execute();
}
?>

问题:

我已经通过将数据回显到循环中的页面进行了测试,并且正在检索数据,但是没有信息被提交到我的数据库。

问题:

  1. 如何改进我的脚本以添加相关的调试行找到原因了吗?
  2. 为什么我的脚本不起作用?很明显吗?如果是这样,您能否解释一下,但是我的上述问题将有助于我的学习曲线与 future 的发展!

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com