本文实例讲述了php使用PDO获取结果集的方法。分享给大家供大家参考,具体如下:
fetch()方法
fetch()方法用于获取结果集的下一行,语法如下:
mixed PDOStatement::fetch([int fetch_style][,int cursor_orientation[,int cursor_offset]]])
参数fetch_style控制结果集的返回方式
PDO::FETCH_ASSOC — 关联数组形式
PDO::FETCH_NUM — 数字索引数组形式
PDO::