const.php 517 B

1234567891011121314151617181920
  1. <?php
  2. /*
  3. * This file is part of the overtrue/pinyin.
  4. *
  5. * (c) overtrue <i@overtrue.me>
  6. *
  7. * This source file is subject to the MIT license that is bundled
  8. * with this source code in the file LICENSE.
  9. */
  10. define('PINYIN_DEFAULT', 4096);
  11. define('PINYIN_TONE', 2);
  12. define('PINYIN_NO_TONE', 4);
  13. define('PINYIN_ASCII_TONE', 8);
  14. define('PINYIN_NAME', 16);
  15. define('PINYIN_KEEP_NUMBER', 32);
  16. define('PINYIN_KEEP_ENGLISH', 64);
  17. define('PINYIN_UMLAUT_V', 128);
  18. define('PINYIN_KEEP_PUNCTUATION', 256);