问题描述
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里面怎样写?
建议你改用 odbc_fetch_array($result)
odbc-fetch-array
也可以
odbc-fetch-row
After odbc_fetch_row() is called, the fields of that row can be accessed with odbc_result()
odbc-result