diff --git a/releases/8.4/release.inc b/releases/8.4/release.inc index 1f0c7866cd..4aa499d200 100644 --- a/releases/8.4/release.inc +++ b/releases/8.4/release.inc @@ -265,7 +265,7 @@ PHP
-

+

RFC

@@ -276,12 +276,17 @@ PHP query('SELECT * FROM foo'); +$connection->sqliteCreateFunction( + 'append_php', + static fn($string) => 'PHP ' . $string +); + +$connection->query('SELECT append_php(version) FROM php'); PHP ); ?>
@@ -293,12 +298,17 @@ PHP query('SELECT * FROM foo'); +$connection->createFunction( + 'append_php', + static fn($string) => 'PHP ' . $string +); // Does not exist on a mismatching driver. + +$connection->query('SELECT append_php(version) FROM php'); PHP ); ?>