dongxi1680 2017-03-31 16:42
浏览 36
已采纳

使用Doctrine(和Silex)将SQL数据作为数组返回

I'm using doctrine to fetch data from my MySQL database. This is all done in Silex. These are the lines of code that enable Doctrine for me.

$config = new \Doctrine\DBAL\Configuration();
$connParams = array(
    'driver'   => 'pdo_mysql',
    'dbname'   => 'webshop',
    'host'     => 'localhost',
    'user'     => 'root',
    'password' => '',
    'charset'  => 'utf8'
);
$conn = \Doctrine\DBAL\DriverManager::getConnection($connParams, $config);
$app['dbcon'] = $conn;

$app->get('/', function () use ($app){

    $user = new User($app['dbcon']);

    return $app['twig']->render('home.twig', [
        'content' => 'Home',
    ]);

})->bind('home');

And I'm trying to create a user class for login stuff etc. The user class looks like this:

<?php

namespace Models;

class User
{
    private $db;

    public function __construct($db)
    {
        $this->db = $db;
        $query = $this->db->prepare("SELECT * FROM users");
        $query->execute();

        $query = $query->fetchAll();

        foreach($query as $user){
            print_r($user);
        }

    }
}

Though, the following is the result:

Array ( [id] => 1 [username] => araguera [password] => password [salt] => ksjdfiwe98ru2w98h )

Why does it return as an array and not as an object? Because I want to be able to do something like "$query->username".

  • 写回答

1条回答 默认 最新

  • dousuo8400 2017-03-31 17:05
    关注

    To add to u_mulder's comment, you can use PDO style to fetch results as object:

    $res = $query->fetchAll(\PDO::FETCH_OBJ);
    

    And in case you want to use fetch (to get one row) you can use:

    $res = $query->fetchObject();
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?