Skip to content
PHP News
Search

The future of PHP

RFC Tracker

Follow the proposals shaping the next version of PHP.

35
Under discussion
00
In voting
30
Accepted this year
09
Declined this year

Debugable Enums

Implemented

Lets enums define __debugInfo() to control what var_dump() shows for an enum case.

PHP 8.6

Last activity

Replaces the PHP License and Zend Engine License with the Modified BSD License, as PHP License 4 and Zend Engine License 3.

Last activity

Changes the session defaults to use_strict_mode=1, cookie_httponly=1 and cookie_samesite=Lax so new installs are safer out of the box.

PHP 8.6

Last activity

Changes the release manager policy to three per PHP version, two hands-on and one hands-off adviser, in line with current practice.

Last activity

enum SortDirection

Implemented

Adds a global SortDirection enum with Ascending and Descending cases as a shared, type-safe way to express sort order.

PHP 8.6

Last activity

Lets you put a doc comment on each function parameter and read it with the new ReflectionParameter::getDocComment().

PHP 8.6

Last activity

Adds array_only_keys() and array_except_keys() to keep or drop the listed keys of an array without the array_flip() workaround.

PHP 8.6

Last activity

Closure optimizations

Implemented

Makes closures cheaper by inferring static when $this is unused and caching stateless closures, though only the caching part was merged.

PHP 8.6

Last activity

Adds six str_prefix_* and str_suffix_* functions to ensure, remove or replace a string's prefix or suffix in one call.

PHP 8.6

Last activity

Adds the form feed character (\f) to the default set of characters that trim(), ltrim() and rtrim() strip.

PHP 8.6

Last activity

Adds mysqli::quote_string(), which escapes a string and wraps it in single quotes, like PDO::quote(), to close a double-quote injection hole.

PHP 8.6

Last activity

Adds exception and silent modes for stream errors, with structured StreamError objects and a StreamErrorCode enum you can inspect.

PHP 8.6

Last activity