Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

soundex

Description

The soundex String for PHP calculate the soundex key of a string.

Syntax

soundex ( string $str ) : string

Parameters

str

The input string.

Return

Returns the soundex key as a string, or FALSE on failure.

Examples

1

<?

$str = "Hello";

$return = soundex($str);

echo $return;

?>
H400
HomeMenu