Syntax : sscanf ( string, string_format, arg1, arg2, arg3... ); Description : The sscanf() function parses input from a string according…
Syntax : soundex ( string ); Description : soundex() function calculates the soundex key of str. This soundex function returns a string 4 characters…
Syntax : similar_text ( string1, string2, percentage); Description : similar_text() function calculates the similarity between two strings with values and percentage. Note: The levenshtein() function is…
Syntax : sha1 ( string, raw_output ); Description : sha1() function calculates the sha1 hash of a string. Parameter : [table caption=""…
Syntax : sha1_file ( filename, raw_output ); Description : sha1_file() function calculates the sha1 hash of the file specified by filename using the…
Syntax : sprintf ( string_format, arg1, arg2, arg3... ); Description : The sprintf() function output a formatted string. Output will come…
Syntax : setlocale ( category, locale ); Description : The setlocale() function sets the locale information. Locale information is currency format, currency…
Syntax : printf ( string_format, arg1, arg2, arg3... ); Description : The printf() function output a formatted string. Output will come…
Syntax : quotemeta ( string ); Description : The quotemeta() function adds backslashes in front of below characters. The predefined characters…
Syntax : quoted_printable_decode ( string ); Description : The quoted_printable_decode() function decodes a quoted-printable string to an 8-bit string. This function…