gpt4 book ai didi

php - 处理数组并插入mysql表中

转载 作者:行者123 更新时间:2023-11-29 13:57:14 26 4
gpt4 key购买 nike

Array
(
[pid] => Array
(
[0] => 2
[1] => 3
)

[price] => Array
(
[0] => 20
[1] => 20
)

[qty] => Array
(
[0] => 2
[1] => 1
)

)

我通过一些处理得到了上述数组的结果。这样我需要更新数据库,如下表

pid price qty
2 20 2
3 20 1

最佳答案

$i = 0;
while( $i < count( $YourArray['pid']) ) {
$query = "INSERT INTO `tableName`(`pid`, `price`, `qty`) VALUES( ?, ?, ? )";
$stmt = $con->prepare( $query );
$stmt->execute(
array(
$YourArray['pid'][$i],
$YourArray['price'][$i],
$YourArray['qty'][$i]
)
);
$i++;
}

在哪里,我使用了 插入方法。

关于php - 处理数组并插入mysql表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15658205/

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