mysql api 多条写,从API将多个值插入mysql数据库

I am connected to an API that keeps track of customer orders. Some orders have one product but some orders have multiple products in one order. When I try and INSERT into my database I only get the first product. I would like to have all the products inserted in the cases where their are more than one. The API's XML to the productName is ->orderItems->orderItem->productName and I am trying to loop through all of them but I still only get the first product.

foreach ($customer_orders as $customer_order) {

$chOrder = curl_init('https://' . $customer_order->reference);

curl_setopt($chOrder, CURLOPT_USERPWD, "username" . ":" . "password");

curl_setopt($chOrder, CURLOPT_HTTPHEADER, array('Content-Type: application/xml'));

curl_setopt($chOrder, CURLOPT_RETURNTRANSFER, true);

$orderResult = curl_exec($chOrder);

curl_close($chOrder);

$shouldContinue = true;

try {

$singleXML = new SimpleXMLElement($orderResult);

} catch (Exception $e) {

$shouldContinue = false;

error_log($e);

error_log('Failed to get history for ' . wp_get_current_user()->user_email . ' using refernece: ' . $customer_order->reference);

}

if ($shouldContinue) {

++$orderCount;

foreach ($singleXML->orderItems->orderItem as $item) {

$product = htmlentities($item->productName, ENT_QUOTES, 'UTF-8');

}

$con = mysqli_connect('localhost', 'root', 'password', 'database');

$query = "INSERT IGNORE INTO customer_product_list(`product`)VALUES('$product')";

mysqli_query($con, $query);

mysqli_close($con);

}

}

解决方案

try put insert query inside foreach loop

$con = mysqli_connect('localhost','root','password','database');

foreach ( $singleXML->orderItems->orderItem as $item ) {

$product = htmlentities($item->productName, ENT_QUOTES, 'UTF-8');

$query = "INSERT IGNORE INTO customer_product_list(`product`) VALUES('$product')";

mysqli_query($con,$query);

}

mysqli_close($con);

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值