sscanf – PHP String Functions

sscanf – PHP String Functions

7 years ago

Syntax : sscanf ( string, string_format, arg1, arg2, arg3... ); Description : The sscanf() function parses input from a string according…

soundex – PHP String Functions

7 years ago

Syntax : soundex ( string ); Description : soundex() function calculates the soundex key of str. This soundex function returns a string 4 characters…

similar_​text – PHP String Functions

7 years ago

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…

sha1 – PHP String Functions

7 years ago

Syntax : sha1 ( string, raw_output ); Description : sha1() function calculates the sha1 hash of a string. Parameter : [table caption=""…

sha1_​file – PHP String Functions

7 years ago

Syntax : sha1_file ( filename, raw_output ); Description : sha1_file() function calculates the sha1 hash of the file specified by filename using the…

sprintf – PHP String Functions

7 years ago

Syntax : sprintf ( string_format, arg1, arg2, arg3... ); Description : The sprintf() function output a formatted string. Output will come…

setlocale – PHP String Functions

7 years ago

Syntax : setlocale ( category, locale ); Description : The setlocale() function sets the locale information. Locale information is currency format, currency…

printf – PHP String Functions

7 years ago

Syntax : printf ( string_format, arg1, arg2, arg3... ); Description : The printf() function output a formatted string. Output will come…

quotemeta – PHP String Functions

7 years ago

Syntax : quotemeta ( string ); Description : The quotemeta() function adds backslashes in front of below characters. The predefined characters…

quoted_​printable_​decode – PHP String Functions

7 years ago

Syntax : quoted_​printable_​decode ( string ); Description : The quoted_​printable_​decode() function decodes a quoted-printable string to an 8-bit string. This function…