diff options
author | Andrey Andreev <narf@devilix.net> | 2022-01-05 22:47:51 +0100 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2022-01-05 22:47:51 +0100 |
commit | 2bb6a49cf53f916e3162a96948deb7a63763c4c3 (patch) | |
tree | 68957c9421181f49bab52d99b4fc8781c19e7ce4 /user_guide_src/source/helpers/string_helper.rst | |
parent | e837d3589ba5c5da5daa58f69bdc14447c90bc51 (diff) | |
parent | 25ae2a3c0a8f20098181e20d55a61c0c42559ee9 (diff) |
[ci skip] Merge branch '3.1-stable' into develop
Diffstat (limited to 'user_guide_src/source/helpers/string_helper.rst')
-rw-r--r-- | user_guide_src/source/helpers/string_helper.rst | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/user_guide_src/source/helpers/string_helper.rst b/user_guide_src/source/helpers/string_helper.rst index c9b5e278c..d32ff54a3 100644 --- a/user_guide_src/source/helpers/string_helper.rst +++ b/user_guide_src/source/helpers/string_helper.rst @@ -35,7 +35,6 @@ The following functions are available: :rtype: string Generates a random string based on the type and length you specify. - Useful for creating passwords or generating random hashes. The first parameter specifies the type of string, the second parameter specifies the length. The following choices are available: @@ -52,6 +51,10 @@ The following functions are available: echo random_string('alnum', 16); + .. note:: Usage of this function is NOT suitable for password generation + or other security-sensitive purposes. Please use + `random_bytes() <https://secure.php.net/random_bytes>`_ instead. + .. php:function:: increment_string($str[, $separator = '_'[, $first = 1]]) :param string $str: Input string |