• <bdo id='0KGnA'></bdo><ul id='0KGnA'></ul>

      <small id='0KGnA'></small><noframes id='0KGnA'>

    1. <tfoot id='0KGnA'></tfoot>
      <i id='0KGnA'><tr id='0KGnA'><dt id='0KGnA'><q id='0KGnA'><span id='0KGnA'><b id='0KGnA'><form id='0KGnA'><ins id='0KGnA'></ins><ul id='0KGnA'></ul><sub id='0KGnA'></sub></form><legend id='0KGnA'></legend><bdo id='0KGnA'><pre id='0KGnA'><center id='0KGnA'></center></pre></bdo></b><th id='0KGnA'></th></span></q></dt></tr></i><div id='0KGnA'><tfoot id='0KGnA'></tfoot><dl id='0KGnA'><fieldset id='0KGnA'></fieldset></dl></div>

      <legend id='0KGnA'><style id='0KGnA'><dir id='0KGnA'><q id='0KGnA'></q></dir></style></legend>
      1. 使用 PDO::FETCH_CLASS 和魔术方法

        时间:2023-10-05

            1. <i id='exuBN'><tr id='exuBN'><dt id='exuBN'><q id='exuBN'><span id='exuBN'><b id='exuBN'><form id='exuBN'><ins id='exuBN'></ins><ul id='exuBN'></ul><sub id='exuBN'></sub></form><legend id='exuBN'></legend><bdo id='exuBN'><pre id='exuBN'><center id='exuBN'></center></pre></bdo></b><th id='exuBN'></th></span></q></dt></tr></i><div id='exuBN'><tfoot id='exuBN'></tfoot><dl id='exuBN'><fieldset id='exuBN'></fieldset></dl></div>

              <legend id='exuBN'><style id='exuBN'><dir id='exuBN'><q id='exuBN'></q></dir></style></legend>
                  <tbody id='exuBN'></tbody>

                <small id='exuBN'></small><noframes id='exuBN'>

                <tfoot id='exuBN'></tfoot>
                  <bdo id='exuBN'></bdo><ul id='exuBN'></ul>
                • 本文介绍了使用 PDO::FETCH_CLASS 和魔术方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我有一个使用魔法方法来存储属性的类.这是一个简化的例子:

                  I have a class that uses magic methods to store properties. Here is a simplified example:

                  class Foo {
                      protected $props;
                  
                      public function __construct(array $props = array()) {
                          $this->props = $props;
                      }
                  
                      public function __get($prop) {
                          return $this->props[$prop];
                      }
                  
                      public function __set($prop, $val) {
                          $this->props[$prop] = $val;
                      }
                  }
                  

                  我试图在执行后为 PDOStatement 的每个数据库行实例化此类的对象,如下所示(不起作用):

                  I'm trying to instantiate objects of this class for each database row of a PDOStatement after it's executed, like this (doesn't work):

                  $st->setFetchMode(PDO::FETCH_CLASS, 'Foo');
                  
                  foreach ($st as $row) {
                      var_dump($row);
                  }
                  

                  问题是 PDO::FETCH_CLASS 在我的类上设置属性值时似乎没有触发神奇的 __set() 方法.

                  The problem is that PDO::FETCH_CLASS does not seem to trigger the magic __set() method on my class when it's setting property values.

                  如何使用 PDO 实现预期效果?

                  推荐答案

                  PDO 的默认行为是在调用构造函数之前设置属性.在调用构造函数后设置获取模式设置属性时,在位掩码中包含PDO::FETCH_PROPS_LATE,这将导致在未定义的属性上调用__set魔术方法.

                  The default behavior of PDO is to set the properties before invoking the constructor. Include PDO::FETCH_PROPS_LATE in the bitmask when you set the fetch mode to set the properties after invoking the constructor, which will cause the __set magic method to be called on undefined properties.

                  $st->setFetchMode(PDO::FETCH_CLASS | PDO::FETCH_PROPS_LATE, 'Foo');
                  

                  或者,创建一个实例并将其提取到其中(即将提取模式设置为 PDO::FETCH_INTO).

                  Alternatively, create an instance and fetch into it (i.e. set fetch mode to PDO::FETCH_INTO).

                  这篇关于使用 PDO::FETCH_CLASS 和魔术方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:php pdo 只从 mysql 获取一个值;等于变量的值 下一篇:PHP PDO ODBC 连接

                  相关文章

                  最新文章

                  <legend id='ggtJb'><style id='ggtJb'><dir id='ggtJb'><q id='ggtJb'></q></dir></style></legend>
                    <bdo id='ggtJb'></bdo><ul id='ggtJb'></ul>
                  <i id='ggtJb'><tr id='ggtJb'><dt id='ggtJb'><q id='ggtJb'><span id='ggtJb'><b id='ggtJb'><form id='ggtJb'><ins id='ggtJb'></ins><ul id='ggtJb'></ul><sub id='ggtJb'></sub></form><legend id='ggtJb'></legend><bdo id='ggtJb'><pre id='ggtJb'><center id='ggtJb'></center></pre></bdo></b><th id='ggtJb'></th></span></q></dt></tr></i><div id='ggtJb'><tfoot id='ggtJb'></tfoot><dl id='ggtJb'><fieldset id='ggtJb'></fieldset></dl></div>
                • <small id='ggtJb'></small><noframes id='ggtJb'>

                    1. <tfoot id='ggtJb'></tfoot>