downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  

<similar_textsprintf>
Last updated: Thu, 26 Jun 2008

soundex

(PHP 4, PHP 5)

soundex — Calculate the soundex key of a string

Description

string soundex ( string $str )

Calculates the soundex key of str .

Soundex keys have the property that words pronounced similarly produce the same soundex key, and can thus be used to simplify searches in databases where you know the pronunciation but not the spelling. This soundex function returns a string 4 characters long, starting with a letter.

This particular soundex function is one described by Donald Knuth in "The Art Of Computer Programming, vol. 3: Sorting And Searching", Addison-Wesley (1973), pp. 391-392.

Parameters

str

The input string.

Return Values

Returns the soundex key as a string.

Examples

Example #1 Soundex Examples

<?php
soundex
("Euler")      == soundex("Ellery");    // E460
soundex("Gauss")      == soundex("Ghosh");    // G200
soundex("Hilbert")    == soundex("Heilbronn"); // H416
soundex("Knuth")      == soundex("Kant");      // K530
soundex("Lloyd")      == soundex("Ladd");      // L300
soundex("Lukasiewicz") == soundex("Lissajous"); // L222
?>



add a noteadd a note User Contributed Notes
Calculate the soundex key of a string
There are no user contributed notes for this page.




<similar_textsprintf>
Last updated: Thu, 26 Jun 2008
show source | credits | sitemap | contact | advertising | mirror sites
Copyright © 2001-2005 The PHP Group
All rights reserved.
This unofficial mirror is operated at: http://phpbuilder.com/
Last updated: Tue Nov 1 20:20:59 2005 EST
Columns / Articles | Tips / Quickies | News | News Linking and RSS Feeds | Shared Code Library
Mail Archives | Support / Discussion Forums | Get Started! Links | Contribute! | Docs