while mysql_fetch_array有关问题
程序员文章站
2022-04-20 11:47:42
...
while mysql_fetch_array问题
刚学PHP,有点疑问
正常取出记录循环用while
while($num_rows=mysql_fetch_object($result)){
输入字段内容等。。
}
就是上面的while后面的条件语句不是很明白。正常的while 后面肯定是跟一条件的表达式,如($i 不是很明白。有谁指点下。。。
同样的语句还是mysql_fetch_array等。在线等
------解决方案--------------------
其实就相当于 while(NULL != ($num_rows=mysql_fetch_object($result)))
------解决方案--------------------
Returns an object with properties that correspond to the fetched row and moves the internal data pointer ahead.
or FALSE if there are no more rows.
刚学PHP,有点疑问
正常取出记录循环用while
while($num_rows=mysql_fetch_object($result)){
输入字段内容等。。
}
就是上面的while后面的条件语句不是很明白。正常的while 后面肯定是跟一条件的表达式,如($i 不是很明白。有谁指点下。。。
同样的语句还是mysql_fetch_array等。在线等
------解决方案--------------------
其实就相当于 while(NULL != ($num_rows=mysql_fetch_object($result)))
------解决方案--------------------
Returns an object with properties that correspond to the fetched row and moves the internal data pointer ahead.
or FALSE if there are no more rows.
相关文章
相关视频
上一篇: 深入理解JavaScript编程中的原型概念_基础知识
下一篇: css垂直水平完全居中手册