diff --git a/reference/session/ini.xml b/reference/session/ini.xml index edb77216a5..af0f6d5a2d 100644 --- a/reference/session/ini.xml +++ b/reference/session/ini.xml @@ -1,5 +1,5 @@ - +
&reftitle.runtime; &extension.runtime; @@ -627,7 +627,7 @@ session.hash_function - integer + mixed @@ -635,6 +635,13 @@ algorithm used to generate the session IDs. '0' means MD5 (128 bits) and '1' means SHA-1 (160 bits). + + Since PHP 6.0.0 it is also possible to specify any of the algorithms + provided by the hash extension (if it is + available), like sha512 or + whirlpool. A complete list of supported algorithms can + be obtained with the hash_algos function. + This was introduced in PHP 5.