跳转到内容

维基百科:用戶介面翻譯/LanguageZh hans.php

本页使用了标题或全文手工转换
维基百科,自由的百科全书

这是Wikipedia:用戶介面翻譯/LanguageZh hans.php当前版本,由SunAfterRain留言 | 贡献编辑于2020年11月22日 (日) 13:56。这个网址是本页该版本的固定链接。

(差异) ←上一修订 | 最后版本 (差异) | 下一修订→ (差异)

<?php
/**
  * @addtogroup Language
  */
class LanguageZh_hans extends Language {
	function stripForSearch( $string ) {
		# MySQL fulltext index doesn't grok utf-8, so we
		# need to fold cases and convert to hex
		# we also separate characters as "words"
		if( function_exists( 'mb_strtolower' ) ) {
			return preg_replace(
				"/([\\xc0-\\xff][\\x80-\\xbf]*)/e",
				"' U8' . bin2hex( \"$1\" )",
				mb_strtolower( $string ) );
		} else {
			list( , $wikiLowerChars ) = Language::getCaseMaps();
			return preg_replace(
				"/([\\xc0-\\xff][\\x80-\\xbf]*)/e",
				"' U8' . bin2hex( strtr( \"\$1\", \$wikiLowerChars ) )",
				$string );
		}
	}
}