gpt4 book ai didi

php - 不希望表中有数组

转载 作者:行者123 更新时间:2023-11-29 07:48:41 26 4
gpt4 key购买 nike

我的代码

$insert2 = "INSERT INTO numbers(ContactID, numbers) VALUES('$insertID','" . $capture_field_vals . "')";
mysql_query($insert2);

我明白

ContactID       numbers  
1 421312, 123123, 3434543, 123423, 98797

我想要什么

ContactID     numbers
1 421312
1 123123
1 3434543
1 123423
1 98797

请帮帮我,我不知道该怎么做

最佳答案

使用explode()将字符串拆分为数组,然后循环遍历它们并将它们插入到表中。

$numbers = explode(',', $capture_field_vals);
foreach ($numbers as $n) {
$n = trim($n);
if (strlen($n) > 0) {
$insert2 = "INSERT INTO numbers (contactID, numbers) VALUES ('$insertID', '$n')";
mysql_query($insert2);
}
}

关于php - 不希望表中有数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27037442/

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