File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 3
3
?? ??? ????, PHP 7.4.0beta2
4
4
5
5
6
- 25 Jul 2019, PHP 7.4.0beta1
7
-
8
-
9
6
25 Jul 2019, PHP 7.4.0beta1
10
7
11
8
- Core:
@@ -36,6 +33,10 @@ PHP NEWS
36
33
. Fixed bug #78271 (Invalid result of if-else). (Nikita)
37
34
. Added new INI directive opcache.cache_id (Windows only). (cmb)
38
35
36
+ - PDO:
37
+ . Implemented FR #71885 (Allow escaping question mark placeholders).
38
+ https://wiki.php.net/rfc/pdo_escape_placeholders (Matteo)
39
+
39
40
- Recode:
40
41
. Unbundled the recode extension. (cmb)
41
42
Original file line number Diff line number Diff line change @@ -555,6 +555,13 @@ PHP 7.4 UPGRADE NOTES
555
555
. The --disable-opcache-file|--enable-opcache-file configure options have been
556
556
removed in favor of the opcache.file_cache INI directive.
557
557
558
+ - PDO:
559
+ . It is now possibile to escape question marks in SQL queries to avoid them
560
+ being interpreted as parameter placeholders. Writing "??" allows to send
561
+ a single question mark to the database and e.g. use the PostgreSQL JSON key
562
+ exists "?" operator. For more details see the RFC:
563
+ https://wiki.php.net/rfc/pdo_escape_placeholders
564
+
558
565
- Reflection:
559
566
. Numeric value of class, property, function and constant modifiers was
560
567
changed. Don't filter methods and properties through
You can’t perform that action at this time.
0 commit comments