普通网友 2013-05-10 01:14
浏览 73
已采纳

输出问题与pdo :: fetchall

source code:

<?php
$dsn = 'mysql:dbname=oop;host=localhost;';
$user = 'admin';
$password = 'password';
try {
$pdo = new PDO($dsn, $user, $password);
} catch (PDOException $e)
{
echo 'Connection failed: ' . $e->getMessage();
}
$stmt = $pdo->prepare("select * from be_users");
$stmt->execute();
echo "<pre>";
print_r($stmt->fetchAll());
echo "</pre>";
?>

result:

Array
(
    [0] => Array
        (
            [username] => tom
            [0] => tom
            [email] => dsfde@gmail.com
            [1] => dsfde@gmail.com
        )

    [1] => Array
        (
            [username] => tom3
            [0] => tom3
            [email] => sdfsdfs@gmail.com
            [1] => sdfsdfs@gmail.com
        )
     ...

Question:

Why the result is not like this:

Array
(
    [0] => Array
        (
            [username] => tom
            [email] => dsfde@gmail.com
        )

    [1] => Array
        (
            [username] => tom3
            [email] => sdfsdfs@gmail.com
              )

展开全部

  • 写回答

3条回答 默认 最新

  • dtgr6303 2013-05-10 01:16
    关注

    You are using the default fetch style, which is PDO::FETCH_BOTH, meaning that you will get an array indexed both numerical and associative. Use PDO::FETCH_ASSOC instead:

    print_r($stmt->fetchAll(PDO::FETCH_ASSOC));
    

    You'll find more information about fetch styles in the manual page of PDOStatement::fetchAll()

    Note that you can specify the fetch mode per statement or globally per PDO instance:

    $pdo->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_ASSOC);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部