gpt4 book ai didi

php - 从 mysql 表获取用户列表

转载 作者:行者123 更新时间:2023-11-30 00:57:18 24 4
gpt4 key购买 nike

我有一个包含以下数据的 MySQL 表:

User  | Status 
------|-------
Bob | online
Mike | online
Karen | offline
Joe | online

有没有一种方法可以形成如下所示的查询,以便我获得所有在线用户的列表?

$query=  "SELECT User FROM User_table WHERE Status='online'";
$db->setQuery($query);
$userlist=$db->loadresult();

最佳答案

$db->loadResult() 仅加载一条记录。要获取另一条记录,只需再次调用即可。

引用:http://docs.joomla.org/J1.5:Accessing_the_database_using_JDatabase

Each of these results functions will return a single record from the database even though there may be several records that meet the criteria that you have set. To get more records you need to call the function again.

或者您可以使用 $db->loadRowList() 它将返回索引数组的索引数组,即查询的所有行和列。

关于php - 从 mysql 表获取用户列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20446427/

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