You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
770 B
24 lines
770 B
11 years ago
|
<?php
|
||
|
/**
|
||
|
* @link http://www.yiiframework.com/
|
||
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
||
|
* @license http://www.yiiframework.com/license/
|
||
|
*/
|
||
|
|
||
|
namespace yii\helpers;
|
||
|
|
||
|
/**
|
||
|
* TransliteratorHelper transliterates UTF-8 encoded text to US-ASCII. Based on Drupal's transliteration module, which
|
||
|
* is based on UtfNormal.php from MediaWiki (http://www.mediawiki.org).
|
||
|
*
|
||
|
* @see http://userguide.icu-project.org/transforms/general
|
||
|
* @see http://www.utf8-chartable.de/unicode-utf8-table.pl
|
||
|
* @see https://doc.wikimedia.org/mediawiki-core/master/php/html/classUtfNormal.html
|
||
|
* @see http://drupal.org/project/issues/transliteration
|
||
|
*
|
||
|
* @author Antonio Ramirez <amigo.cobos@gmail.com>
|
||
|
* @since 2.0
|
||
|
*/
|
||
|
class TransliteratorHelper extends BaseTransliteratorHelper
|
||
|
{
|
||
|
}
|