gpt4 book ai didi

php - 将mysql数据转换成数组?

转载 作者:行者123 更新时间:2023-11-29 04:59:34 26 4
gpt4 key购买 nike

我有一个 ajax 脚本来检查用户名是否可用,但它一直在使用最新的用户名,其余的都用完了

$result = mysql_query("Select username from customer");

while ($row = mysql_fetch_array($result)){

$existing_users=array(''.$row['username'].',');
}

我知道我在做一些破事

最佳答案

$result = mysql_query("select username from customer");

$existing_users = array();

while ($row = mysql_fetch_array($result)){
$existing_users[] = $row[ 'username' ];
}

$csv_array = implode( ',', $existing_users );

关于php - 将mysql数据转换成数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2769986/

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