mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-25 21:38:56 +00:00

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@129420 c90b9560-bf6c-de11-be94-00142212c4b1
73 lines
2.2 KiB
XML
73 lines
2.2 KiB
XML
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
<!-- $Revision: 1.3 $ -->
|
|
<!-- splitted from ./en/functions/strings.xml, last change in rev 1.2 -->
|
|
<refentry id="function.soundex">
|
|
<refnamediv>
|
|
<refname>soundex</refname>
|
|
<refpurpose>Calculate the soundex key of a string</refpurpose>
|
|
</refnamediv>
|
|
<refsect1>
|
|
<title>Description</title>
|
|
<methodsynopsis>
|
|
<type>string</type><methodname>soundex</methodname>
|
|
<methodparam><type>string</type><parameter>str</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
Calculates the soundex key of <parameter>str</parameter>.
|
|
</para>
|
|
<para>
|
|
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.
|
|
</para>
|
|
<para>
|
|
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.
|
|
</para>
|
|
<para>
|
|
<example>
|
|
<title>Soundex Examples</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?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';
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
</para>
|
|
<para>
|
|
See also <function>levenshtein</function>,
|
|
<function>metaphone</function>, and <function>similar_text</function>.
|
|
</para>
|
|
</refsect1>
|
|
</refentry>
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
Local variables:
|
|
mode: sgml
|
|
sgml-omittag:t
|
|
sgml-shorttag:t
|
|
sgml-minimize-attributes:nil
|
|
sgml-always-quote-attributes:t
|
|
sgml-indent-step:1
|
|
sgml-indent-data:t
|
|
indent-tabs-mode:nil
|
|
sgml-parent-document:nil
|
|
sgml-default-dtd-file:"../../../../manual.ced"
|
|
sgml-exposed-tags:nil
|
|
sgml-local-catalogs:nil
|
|
sgml-local-ecat-files:nil
|
|
End:
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
vim: et tw=78 syn=sgml
|
|
vi: ts=1 sw=1
|
|
-->
|