时间:2021-07-01 10:21:17 帮助过:6人阅读
PDOStatement PDO::query ( string statement )
mixed PDOStatement::fetch ( [int fetch_style [, int cursor_orientation [, int cursor_offset]]] )
array PDOStatement::fetchAll ( [int fetch_style [, int column_index]] )
PDOStatement PDO::query ( string statement )
mixed PDOStatement::fetch ( [int fetch_style [, int cursor_orientation [, int cursor_offset]]] )
array PDOStatement::fetchAll ( [int fetch_style [, int column_index]] )
PDOStatement PDO::query ( string statement )
mixed PDOStatement::fetch ( [int fetch_style [, int cursor_orientation [, int cursor_offset]]] )
array PDOStatement::fetchAll ( [int fetch_style [, int column_index]] )
改成这样.
query('select * from blog') $result = $sth->fetchall(PDO::FETCH_ASSOC); foreach($result as $k=>$v){ print_r($v);}?>
改成这样.
query('select * from blog') $result = $sth->fetchall(PDO::FETCH_ASSOC); foreach($result as $k=>$v){ print_r($v);}?>
改成这样.
query('select * from blog') $result = $sth->fetchall(PDO::FETCH_ASSOC); foreach($result as $k=>$v){ print_r($v);}?>
当然是数组形式的!
你 select * from blog
这个 * 表示的是表中的所有字段,php 不可能越俎代庖的将他们链接成一个值
即便表中只有一个字段,但 php 也是不会知道的
因为所有的解释权在你,而不是在 php
当然是数组形式的!
你 select * from blog
这个 * 表示的是表中的所有字段,php 不可能越俎代庖的将他们链接成一个值
即便表中只有一个字段,但 php 也是不会知道的
因为所有的解释权在你,而不是在 php
我已经说过了,php 对于数据库查询,总是返回数组的
$pdo=new PDO("mysql:host=localhost;dbname=t1","root",""); $sth=$pdo->query('select * from blog') $result = $sth->fetchall(PDO::FETCH_ASSOC); foreach($result as $k=>$v){ echo $v['content']; //这样不就是但值了吗?}
我已经说过了,php 对于数据库查询,总是返回数组的
$pdo=new PDO("mysql:host=localhost;dbname=t1","root",""); $sth=$pdo->query('select * from blog') $result = $sth->fetchall(PDO::FETCH_ASSOC); foreach($result as $k=>$v){ echo $v['content']; //这样不就是但值了吗?}