gpt4 book ai didi

php - mysql php函数没有返回值

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

为什么这个函数不返回任何行?

function select_mysql($tabel, $order, $volgorder, $statement) {
$iCount = 0;
$rows = array();
$query = 'SELECT * FROM ' . $tabel . ' ' . $statement .
' ORDER BY `' . $order . '` ' . $volgorder . '';
$result = mysql_query($query) or die(mysql_error());
while ($row = mysql_fetch_assoc($result)) {
while ($property = mysql_fetch_field($result)) {
$rows[$iCount][$property->name] = $row[$property->name];
}

$iCount++;
}
return $rows;
}

最佳答案

不需要 mysql_fetch_field() 内部循环。 $row 将是一个关联数组,其中包含该行的所有字段。因此,如果该表中有字段 abc,那么您可以使用 $row[' 访问它们a']$row['b']$row['c']

关于php - mysql php函数没有返回值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4291834/

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