gpt4 book ai didi

php - 如何向mysql数据库中插入随机值?

转载 作者:行者123 更新时间:2023-11-29 13:20:07 25 4
gpt4 key购买 nike

如何将随机值插入到数据库mysql中?

好的,当我加载此代码时,我将获得像这样的随机数格式

5,3,1,6,4,

我想将5,3,1,6,4,插入数据库mysql(1行1列),我该怎么做?

<?
$cards = array();
for ($i = 0; $i < 5; $i++)
{
$card = mt_rand(1, 6);
if(!in_array($card, $cards))
{
$cards[$i] = $card;
}
else
{
$i--;
}
}
foreach ($cards as $cards)
{
echo $cards.",";
}
?>

最佳答案

它与插入非随机值有何不同?

mysqli_query($link, "INSERT INTO yourtable (id, cards) VALUES (NULL, '$cards')");

或者类似的东西。

关于php - 如何向mysql数据库中插入随机值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20953526/

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