gpt4 book ai didi

php - 查询数据库以取回数组

转载 作者:行者123 更新时间:2023-11-30 23:40:58 32 4
gpt4 key购买 nike

我需要获取我的用户表中的所有用户,然后将结果作为数组获取并遍历它并为每个用户创建一个 XML 文件。

我该怎么做呢?

我猜查询会类似于 SELECT * FROM users 但我不确定如何将所有结果作为数组获取,然后如何一一遍历它们并创建 XML。

提前致谢!

最佳答案

这是一个示例-//我还没有运行/测试 itp>

$result =  mysql_query("select * from user");

if(mysql_num_rows($result)>0){
while($row = mysql_fetch_array($result)){
$xml_nodes[] = $row;// or you can create XML file for the user of this $row here
}
}

//this would be double time doing the same thing, if u dont use seperate function to
// populate $xml_nodes array and return that array
if(isset($row)){
foreach($xml_nodes as $user_node){
//create XML file for the user of $user_node here
}
}

关于php - 查询数据库以取回数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3107722/

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