21 lines
497 B
PHP
21 lines
497 B
PHP
|
<?php
|
||
|
|
||
|
/*
|
||
|
* This file is part of the overtrue/pinyin.
|
||
|
*
|
||
|
* (c) overtrue <i@overtrue.me>
|
||
|
*
|
||
|
* This source file is subject to the MIT license that is bundled
|
||
|
* with this source code in the file LICENSE.
|
||
|
*/
|
||
|
|
||
|
define('PINYIN_DEFAULT', 4096);
|
||
|
define('PINYIN_TONE', 2);
|
||
|
define('PINYIN_NO_TONE', 4);
|
||
|
define('PINYIN_ASCII_TONE', 8);
|
||
|
define('PINYIN_NAME', 16);
|
||
|
define('PINYIN_KEEP_NUMBER', 32);
|
||
|
define('PINYIN_KEEP_ENGLISH', 64);
|
||
|
define('PINYIN_UMLAUT_V', 128);
|
||
|
define('PINYIN_KEEP_PUNCTUATION', 256);
|