File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,10 @@ PHP NEWS
23
23
- MBstring:
24
24
. Updated Unicode data tables to Unicode 17.0. (Yuya Hamada)
25
25
26
+ - Standard:
27
+ . Passing strings which are not one byte long to ord() is now deprecated.
28
+ (Girgias)
29
+
26
30
- URI:
27
31
. Fixed bug GH-19780 (InvalidUrlException should check $errors argument).
28
32
(nielsdos)
Original file line number Diff line number Diff line change @@ -555,6 +555,9 @@ PHP 8.5 UPGRADE NOTES
555
555
. Passing integers outside the interval [0, 255] to chr() is now deprecated.
556
556
This is because a byte can only hold a value within this interval.
557
557
RFC: https://wiki.php.net/rfc/deprecations_php_8_5#deprecate_passing_integers_outside_the_interval_0_255_to_chr
558
+ . Passing a string which is not a single byte to ord() is now deprecated,
559
+ this is indicative of a bug.
560
+ RFC: https://wiki.php.net/rfc/deprecations_php_8_5#deprecate_passing_string_which_are_not_one_byte_long_to_ord
558
561
. Relying locally predefined variable $http_response_header is deprecated.
559
562
Instead one should call the http_get_last_response_headers() function.
560
563
RFC: https://wiki.php.net/rfc/deprecations_php_8_5#deprecate_the_http_response_header_predefined_variable
You can’t perform that action at this time.
0 commit comments