gpt4 book ai didi

php - 显示函数返回的 mySQL 结果数组中的数据

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

我想从函数传递 mySQL 结果并打印数据。如何做到这一点?

<?php
function showLatestItems()
{
$result = $this->query("SELECT aid,name,description,img,amount,strtdate,enddate FROM item WHERE enddate>now()");
return $result;
/* while($row=mysql_fetch_array($result))
echo $row[0].' '.$row[3].' '.$row[1].' '.$row[2].$row[4].$row[5].$row[6].'<br>';
*/
}
?>

最佳答案

只需捕获结果资源,然后从中获取行。根据注释掉的代码,我们假设您已使用名为 query() 的类方法包装了 mysql_query()

$result = $yourclass->showLatestItems();
if ($result) {
$rowset = array();
while ($row = mysql_fetch_assoc($result)) {
$rowset[] = $row;
}
}

var_dump($rowset);

关于php - 显示函数返回的 mySQL 结果数组中的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9547668/

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