gpt4 book ai didi

php - 将 SQL 查询的数据返回到数组中

转载 作者:行者123 更新时间:2023-11-29 13:48:18 27 4
gpt4 key购买 nike

我有以下代码:

$aResult = $db->exec_sql($sql);

//dlog2("matt", __line__, $aResult);
print_r($aResult);


$params = array(
'store_id' => $aResult['iStoreID'],
'user_id' => $aResult['iUserID'],
'store_name' => $aResult['cStoreName'],
'store_url' => $aResult['cStoreURL'],
'rid' => $aResult['cRID'],
'affiliate_id' => $aResult['iAffiliateID'],
'team_id' => $aResult['iTeamID'],
'bizOP' => $aResult['cDefaultBizOpp'],
'showBizOPp' => $aResult['iShowBizOppDropdown'],
'boPosting' => $aResult['iEnableBOPosting'],
'brandinglevel' => $aResult['iBrandingLevel']
);

// dlog2("matt", __line__, $params);
print_r($params);

$aResult 是一个数组,其中数据按列标题组织。但是,当我尝试将数据移动到 $params 时,它返回一个空数组。有什么建议吗?

这个想法是要设置一个 cron 来对 $params 进行外部发布

最佳答案

$aResult 是使用 PDO 检索的吗?如果是的话使用哪种方法?你用过抓取吗?或者 fetchAll 如果您将上面的方法与 $aResult['item] 一起使用,则应该使用 fetch 如果没有,并且您已经使用了 fetchAll 您将需要 $aResult[0]['item'] 否则将生成一个空数组。这是我根据给出的信息猜测的

关于php - 将 SQL 查询的数据返回到数组中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17096668/

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