diff --git a/reference/session/ini.xml b/reference/session/ini.xml
index 52b3e5e87b..322b273a61 100644
--- a/reference/session/ini.xml
+++ b/reference/session/ini.xml
@@ -122,13 +122,13 @@
session.entropy_file""PHP_INI_ALL
-
+ Removed in PHP 7.1.0.session.entropy_length"0"PHP_INI_ALL
-
+ Removed in PHP 7.1.0session.cache_limiter
@@ -160,17 +160,29 @@
PHP_INI_ALLAvailable since PHP 4.3.0. Removed in PHP 5.4.0.
+
+ session.sid_length
+ "48"
+ PHP_INI_ALL
+ Available since PHP 7.1.0.
+
+
+ session.sid_bits_per_character
+ "5"
+ PHP_INI_ALL
+ Available since PHP 7.1.0.
+ session.hash_function"0"PHP_INI_ALL
- Available since PHP 5.0.0.
+ Available since PHP 5.0.0. Removed in PHP 7.1.0.session.hash_bits_per_character"4"PHP_INI_ALL
- Available since PHP 5.0.0.
+ Available since PHP 5.0.0. Removed in PHP 7.1.0.url_rewriter.tags
@@ -426,13 +438,13 @@
session.gc_divisor).
-
+
If different scripts have different values of
session.gc_maxlifetime but share the same place for
storing the session data then the script with the minimum value will be
cleaning the data. In this case, use this directive together with session.save_path.
-
+
@@ -472,6 +484,9 @@
will make PHP use the Windows Random API as entropy source.
+
+ Removed in PHP 7.1.0.
+
As of PHP 5.4.0 session.entropy_file defaults
to /dev/urandom or /dev/arandom
@@ -490,7 +505,10 @@
session.entropy_length specifies the number
of bytes which will be read from the file specified
- above. Defaults to 0 (disabled).
+ above. Defaults to 32.
+
+
+ Removed in PHP 7.1.0.
@@ -560,10 +578,10 @@
session_set_cookie_params.
-
+
The expiration timestamp is set relative to the server time, which is
not necessarily the same as the time in the client's browser.
-
+
@@ -705,6 +723,11 @@
session.bug_compat_warn is also enabled. This feature/bug can be
disabled by disabling this directive.
+
+
+ Removed in PHP 5.4.0.
+
+
@@ -724,6 +747,60 @@
and
session.bug_compat_warn.
+
+
+ Removed in PHP 5.4.0.
+
+
+
+
+
+
+
+ session.sid_length
+ integer
+
+
+
+ session.sid_length allows you to specify the
+ length of session ID string. Session ID length can be between 22
+ to 256.
+
+
+ The default is 48. If you need compatibility you may specfy 32,
+ 40, etc.
+
+
+
+
+
+ This setting is introduced in PHP 7.1.0.
+
+
+
+
+
+
+
+ session.sid_bits_per_character
+ integer
+
+
+
+ session.sid_per_character allows you to specify the
+ number of bits in encoded session ID character. The possible values are
+ '4' (0-9, a-f), '5' (0-9, a-v), and '6' (0-9, a-z, A-Z, "-", ",").
+
+
+ The default is 5.
+
+
+
+
+
+ This setting is introduced in PHP 7.1.0.
+
+
@@ -746,9 +823,9 @@
be obtained with the hash_algos function.
-
- This setting was introduced in PHP 5.
-
+
+ This setting was introduced in PHP 5. Removed in PHP 7.1.0.
+
@@ -766,9 +843,9 @@
'5' (0-9, a-v), and '6' (0-9, a-z, A-Z, "-", ",").
-
- This was introduced in PHP 5.
-
+
+ This was introduced in PHP 5. Removed in PHP 7.1.0.
+