本文整理汇总了PHP中CString::metaphoneKey方法的典型用法代码示例。如果您正苦于以下问题:PHP CString::metaphoneKey方法的具体用法?PHP CString::metaphoneKey怎么用?PHP CString::metaphoneKey使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CString
的用法示例。
在下文中一共展示了CString::metaphoneKey方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: metaphoneKey
/**
* Returns the Metaphone key "heard" from a string.
*
* The algorithm used to render the [Metaphone](http://en.wikipedia.org/wiki/Metaphone) key is the first-generation
* one.
*
* @param string $string The source string.
* @param bool $transliterate **OPTIONAL. Default is** `true`. Tells whether to transliterate the string into the
* Latin script and then flatten it to ASCII before generating the key. Since the Metaphone algorithm is not
* Unicode-aware, the touch of transliteration is something that any arbitrary Unicode string would wish for. For
* example, "こんにちは" is transliterated to "kon'nichiha".
*
* @return string The Metaphone key of the string.
*/
public static function metaphoneKey($string, $transliterate = true)
{
assert('is_cstring($string) && is_bool($transliterate)', vs(isset($this), get_defined_vars()));
$string = CEString::flattenUnicodeToAscii($string, $transliterate);
return CString::metaphoneKey($string);
}