Have fun with PHP: how to bypass an object constructor
Some of the features in PHP may be surprising. Think for instance of the way PDO is able to create classed results, place the query results into them, and only then invoke the constructor when using PDO::FETCH_CLASS
fetch mode without the additional PDO::FETCH_PROPS_LATE
. Every wished you could do this in userland code ? Turns out this has long been possible, and is even simpler since PHP 5.4.