You are here : phpstringsoundex

soundex() - string

Calculates the soundex key of str.
Parameters :
  • str - The input string.

  • Syntax

    string soundex
        ( string $str
       )


    Example

    <?phpsoundex("Euler")       == soundex("Ellery");    // E460soundex("Gauss")       == soundex("Ghosh");     // G200soundex("Hilbert")     == soundex("Heilbronn"); // H416soundex("Knuth")       == soundex("Kant");      // K530soundex("Lloyd")       == soundex("Ladd");      // L300soundex("Lukasiewicz") == soundex("Lissajous"); // L222?>


    Output / Return Value


    Limitations


    Alternatives / See Also


    Reference