Be warned of the rather unorthodox behavior of PDOStatement::fetchObject() which injects property-values BEFORE invoking the constructor - in other words, if your class initializes property-values to defaults in the constructor, you will be overwriting the values injected by fetchObject() !
A var_dump($this) in your __construct() method will reveal that property-values have been initialized prior to calling your constructor, so be careful.
For this reason, I strongly recommend hydrating your objects manually, after retrieving the data as an array, rather than trying to have PDO apply properties directly to your objects.
Clearly somebody thought they were being clever here - allowing you to access hydrated property-values from the constructor. Unfortunately, this is just not how OOP works - the constructor, by definition, is the first method called upon construction.
If you need to initialize your objects after they have been constructed and hydrated, I suggest your model types implement an interface with an init() method, and you data access layer invoke this method (if implemented) after hydrating.
PDOStatement::fetchObject
(PHP 5 >= 5.1.0, PECL pdo >= 0.2.4)
PDOStatement::fetchObject — Obtiene la siguiente fila y la devuelve como un objeto
Descripción
Obtiene la siguiente fila y la devuelve como un objeto. Esta función es una
alternativa para PDOStatement::fetch() con el estilo
PDO::FETCH_CLASS o
PDO::FETCH_OBJ.
Parámetros
-
class_name -
El nombre de la clase creada.
-
ctor_args -
Los elementos de este array son pasados al constructor.
Valores devueltos
Devuelve una instancia de la clase requerida con los nombres de sus propiedades que
se corresponden a los nombre de las columnas, o FALSE en caso de error.
rasmus at mindplay dot dk ¶
2 months ago
