当前位置: 首页>>代码示例>>PHP>>正文


PHP CString::metaphoneKey方法代码示例

本文整理汇总了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);
 }
开发者ID:nunodotferreira,项目名称:Phred,代码行数:20,代码来源:CUString.php


注:本文中的CString::metaphoneKey方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。