作用
fetchAll()方法是获取结果集中的所有行.其返回值是一个包含结果集中所有数据的二维数组。
PDOStatement::fetchAll ([ int $fetch_style [, mixed $fetch_argument[, array$ctor_args= array() ]]] )
fetch_style:控制结果的返回方式
注意:PDO::FETCH_COLUMN要配合column-index使用比如你的sql是这样的
select uid , user_name from user_info ;
fetchAll(PDO::FETCH_COLUMN,0) ===>获得的就是uid这列的所有数据
fetchAll(PDO::FETCH_COLUMN,1) ===>获得的就是user_name这列的所有数据
column_index:字段的索引