Skip to content

Commit 441f9de

Browse files
committed
ext/pdo: Refactor PDO::FETCH_CLASS to not rely on a FCI and use a HashTable for ctor_arg
To call the constructor we now only store the CE and a HashTable for the arguments. This reduces the size of the _pdo_stmt_t struct from 320 bytes to 232 bytes. Moreover, this now means that the constructor argument array follows the usual CUFA semantics. This change is a BC break, as string keys now act like named arguments. Moreover, the automatic wrapping of by-value arguments for by-ref parameters has been dropped, and the usual E_WARNING is now emitted in those cases. The do_fetch() is heavily refactored to simplify the execution flow, which also makes it easier to understand. Additionally we add a new bitflag in_fetch to prevent modification of the fetch flags by userland when PDO is fetching from the DB.
1 parent bbc9b36 commit 441f9de

16 files changed

+342
-426
lines changed

UPGRADING

+12
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,18 @@ PHP 8.5 UPGRADE NOTES
5050
. pcntl_exec() now throws ValueErrors when entries or keys of the
5151
$env_vars parameter contain null bytes.
5252

53+
- PDO:
54+
. The constructor arguments set in conjunction with PDO::FETCH_CLASS now
55+
follow the usual CUFA (call_user_func_array) semantics.
56+
This means string keys will act like a named argument.
57+
Moreover, automatic wrapping for by-value arguments passed to a by-ref
58+
parameter has been removed, and the usual E_WARNING about this is now
59+
emitted.
60+
To pass a variable by-ref to a constructor argument use the general
61+
array value reference assignment: $ctor_args = [&$valByRef]
62+
. Attempting to modify a PDOStatement during a call to PDO::fetch(),
63+
PDO::fetchObject(), PDO::fetchAll() will now throw an Error.
64+
5365
- PDO_FIREBIRD:
5466
. A ValueError is now thrown when trying to set a cursor name that is too
5567
long on a PDOStatement resulting from the Firebird driver.

0 commit comments

Comments
 (0)