PHP ODBC 如何将结果集转成数组?

新手上路,请多包涵

问题描述

PHP ODBC 连接 SQL server 如何将结果集转成数组?

相关代码

// 请把代码文本粘贴到下方(请勿用图片代替代码)
$query="SELECT * from tblWeight where LISTID='$listid' and DateDiff(dd,LISTTIME,getdate())<=2"; $result=odbc_exec($link,$query);
$worklist = array();
while (odbc_fetch_row($result)) {

}

你期待的结果是什么?

想用$worklist这个数组来接收查询后的结果集,那么在while里面怎样写?

阅读 1.9k
1 个回答

建议你改用 odbc_fetch_array($result)

odbc-fetch-array

也可以

while (odbc_fetch_row($result)) {
    $arr = array(
        $fieldNameA => odbc_result($result, $fieldNameA)
        $fieldNameB => odbc_result($result, $fieldNameB)
        ...
        $fieldNameN => odbc_result($result, $fieldNameN)
    );
}

odbc-fetch-row
After odbc_fetch_row() is called, the fields of that row can be accessed with odbc_result()
odbc-result

mixed odbc_result ( resource $result_id , mixed $field )
$field : The field name being retrieved. It can either be an integer containing the column number of the field you want; or it can be a string containing the name of the field.
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题