(PHP 4, PHP 5, PHP 7)
metaphone — Calculate the metaphone key of a string
metaphone ( string $string [, int $max_phonemes = 0 ] ) : string
Calculates the metaphone key of string
.
Similar to soundex() metaphone creates the same key for similar sounding words. It's more accurate than soundex() as it knows the basic rules of English pronunciation. The metaphone generated keys are of variable length.
Metaphone was developed by Lawrence Philips <lphilips at verity dot com>. It is described in ["Practical Algorithms for Programmers", Binstock & Rex, Addison Wesley, 1995].
string
The input string.
max_phonemes
This parameter restricts the returned metaphone key to max_phonemes
characters in length. However, the resulting phonemes are always transcribed completely, so the resulting string length may be slightly longer than max_phonemes
. The default value of 0
means no restriction.
Returns the metaphone key as a string.
Version | Description |
---|---|
8.0.0 | The function returned false on failure. |
Example #1 metaphone() basic example
The above example will output:
Example #2 Using the max_phonemes
parameter
The above example will output:
Example #3 Using the max_phonemes
parameter
In this example, metaphone() is advised to produce a string of five characters, but that would require to split the final phoneme ('x'
is supposed to be transcribed to 'KS'
), so the function returns a string with six characters.
The above example will output:
© 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/function.metaphone.php