1
0
mirror of https://github.com/php/php-src.git synced 2026-03-29 03:32:20 +02:00

Add NEWS/UPGRADING for negative string offsets

This commit is contained in:
Nikita Popov
2016-03-09 14:41:08 +01:00
parent d0d9e7251e
commit f65486f13d
2 changed files with 10 additions and 0 deletions

2
NEWS
View File

@@ -10,6 +10,8 @@ PHP NEWS
. Implemented the RFC `Support Class Constant Visibility`. (Sean DuBois,
Reeze Xia, Dmitry)
. Added void return type. (Andrea)
. Added support for negative string offsets in string offset syntax and
various string functions. (Francois)
- FTP:
. Implemented FR #55651 (Option to ignore the returned FTP PASV address).

View File

@@ -32,6 +32,9 @@ PHP 7.1 UPGRADE NOTES
- Core
. Added void return type, which requires that a function not return a value.
(RFC: https://wiki.php.net/rfc/void_return_type)
. String offset access now supports negative references, which will be
counted from the end of the string.
(RFC: https://wiki.php.net/rfc/negative-string-offsets)
========================================
3. Changes in SAPI modules
@@ -66,6 +69,11 @@ PHP 7.1 UPGRADE NOTES
- unpack() accepts an additional optional $offset argument. '@' format code
(that specifes an absolute position) is applyed to input data after
the $offset argument.
- strpos(), stripos(), substr_count(), grapheme_strpos(), grapheme_stripos(),
grapheme_extract(), iconv_strpos(), mb_strimwidth(), mb_ereg_search_setpos(),
mb_strpos() and mb_stripos() now accept negative string offstes.
- substr_count() and mb_strimwidth() additionally also accept negative length.
- file_get_contents() accepts a negative seek offset if the stream is seekable.
========================================
6. New Functions