StringUtils deprecated
class StringUtils
deprecated
String utility functions.
Methods
static bool
equals(string $knownString, string $userInput)
Compares two strings.
static int
safeStrlen(string $string)
Returns the number of bytes in a string.
Details
at line line 45
static bool
equals(string $knownString, string $userInput)
Compares two strings.
This method implements a constant-time algorithm to compare strings. Regardless of the used implementation, it will leak length information.
at line line 66
static int
safeStrlen(string $string)
Returns the number of bytes in a string.