bootstrap.php 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. use Symfony\Polyfill\Intl\Idn as p;
  11. if (extension_loaded('intl')) {
  12. return;
  13. }
  14. if (!defined('U_IDNA_PROHIBITED_ERROR')) {
  15. define('U_IDNA_PROHIBITED_ERROR', 66560);
  16. }
  17. if (!defined('U_IDNA_ERROR_START')) {
  18. define('U_IDNA_ERROR_START', 66560);
  19. }
  20. if (!defined('U_IDNA_UNASSIGNED_ERROR')) {
  21. define('U_IDNA_UNASSIGNED_ERROR', 66561);
  22. }
  23. if (!defined('U_IDNA_CHECK_BIDI_ERROR')) {
  24. define('U_IDNA_CHECK_BIDI_ERROR', 66562);
  25. }
  26. if (!defined('U_IDNA_STD3_ASCII_RULES_ERROR')) {
  27. define('U_IDNA_STD3_ASCII_RULES_ERROR', 66563);
  28. }
  29. if (!defined('U_IDNA_ACE_PREFIX_ERROR')) {
  30. define('U_IDNA_ACE_PREFIX_ERROR', 66564);
  31. }
  32. if (!defined('U_IDNA_VERIFICATION_ERROR')) {
  33. define('U_IDNA_VERIFICATION_ERROR', 66565);
  34. }
  35. if (!defined('U_IDNA_LABEL_TOO_LONG_ERROR')) {
  36. define('U_IDNA_LABEL_TOO_LONG_ERROR', 66566);
  37. }
  38. if (!defined('U_IDNA_ZERO_LENGTH_LABEL_ERROR')) {
  39. define('U_IDNA_ZERO_LENGTH_LABEL_ERROR', 66567);
  40. }
  41. if (!defined('U_IDNA_DOMAIN_NAME_TOO_LONG_ERROR')) {
  42. define('U_IDNA_DOMAIN_NAME_TOO_LONG_ERROR', 66568);
  43. }
  44. if (!defined('U_IDNA_ERROR_LIMIT')) {
  45. define('U_IDNA_ERROR_LIMIT', 66569);
  46. }
  47. if (!defined('U_STRINGPREP_PROHIBITED_ERROR')) {
  48. define('U_STRINGPREP_PROHIBITED_ERROR', 66560);
  49. }
  50. if (!defined('U_STRINGPREP_UNASSIGNED_ERROR')) {
  51. define('U_STRINGPREP_UNASSIGNED_ERROR', 66561);
  52. }
  53. if (!defined('U_STRINGPREP_CHECK_BIDI_ERROR')) {
  54. define('U_STRINGPREP_CHECK_BIDI_ERROR', 66562);
  55. }
  56. if (!defined('IDNA_DEFAULT')) {
  57. define('IDNA_DEFAULT', 0);
  58. }
  59. if (!defined('IDNA_ALLOW_UNASSIGNED')) {
  60. define('IDNA_ALLOW_UNASSIGNED', 1);
  61. }
  62. if (!defined('IDNA_USE_STD3_RULES')) {
  63. define('IDNA_USE_STD3_RULES', 2);
  64. }
  65. if (!defined('IDNA_CHECK_BIDI')) {
  66. define('IDNA_CHECK_BIDI', 4);
  67. }
  68. if (!defined('IDNA_CHECK_CONTEXTJ')) {
  69. define('IDNA_CHECK_CONTEXTJ', 8);
  70. }
  71. if (!defined('IDNA_NONTRANSITIONAL_TO_ASCII')) {
  72. define('IDNA_NONTRANSITIONAL_TO_ASCII', 16);
  73. }
  74. if (!defined('IDNA_NONTRANSITIONAL_TO_UNICODE')) {
  75. define('IDNA_NONTRANSITIONAL_TO_UNICODE', 32);
  76. }
  77. if (!defined('INTL_IDNA_VARIANT_2003')) {
  78. define('INTL_IDNA_VARIANT_2003', 0);
  79. }
  80. if (!defined('INTL_IDNA_VARIANT_UTS46')) {
  81. define('INTL_IDNA_VARIANT_UTS46', 1);
  82. }
  83. if (!defined('IDNA_ERROR_EMPTY_LABEL')) {
  84. define('IDNA_ERROR_EMPTY_LABEL', 1);
  85. }
  86. if (!defined('IDNA_ERROR_LABEL_TOO_LONG')) {
  87. define('IDNA_ERROR_LABEL_TOO_LONG', 2);
  88. }
  89. if (!defined('IDNA_ERROR_DOMAIN_NAME_TOO_LONG')) {
  90. define('IDNA_ERROR_DOMAIN_NAME_TOO_LONG', 4);
  91. }
  92. if (!defined('IDNA_ERROR_LEADING_HYPHEN')) {
  93. define('IDNA_ERROR_LEADING_HYPHEN', 8);
  94. }
  95. if (!defined('IDNA_ERROR_TRAILING_HYPHEN')) {
  96. define('IDNA_ERROR_TRAILING_HYPHEN', 16);
  97. }
  98. if (!defined('IDNA_ERROR_HYPHEN_3_4')) {
  99. define('IDNA_ERROR_HYPHEN_3_4', 32);
  100. }
  101. if (!defined('IDNA_ERROR_LEADING_COMBINING_MARK')) {
  102. define('IDNA_ERROR_LEADING_COMBINING_MARK', 64);
  103. }
  104. if (!defined('IDNA_ERROR_DISALLOWED')) {
  105. define('IDNA_ERROR_DISALLOWED', 128);
  106. }
  107. if (!defined('IDNA_ERROR_PUNYCODE')) {
  108. define('IDNA_ERROR_PUNYCODE', 256);
  109. }
  110. if (!defined('IDNA_ERROR_LABEL_HAS_DOT')) {
  111. define('IDNA_ERROR_LABEL_HAS_DOT', 512);
  112. }
  113. if (!defined('IDNA_ERROR_INVALID_ACE_LABEL')) {
  114. define('IDNA_ERROR_INVALID_ACE_LABEL', 1024);
  115. }
  116. if (!defined('IDNA_ERROR_BIDI')) {
  117. define('IDNA_ERROR_BIDI', 2048);
  118. }
  119. if (!defined('IDNA_ERROR_CONTEXTJ')) {
  120. define('IDNA_ERROR_CONTEXTJ', 4096);
  121. }
  122. if (PHP_VERSION_ID < 70400) {
  123. if (!function_exists('idn_to_ascii')) {
  124. function idn_to_ascii($domain, $options = IDNA_DEFAULT, $variant = INTL_IDNA_VARIANT_2003, &$idna_info = array()) { return p\Idn::idn_to_ascii($domain, $options, $variant, $idna_info); }
  125. }
  126. if (!function_exists('idn_to_utf8')) {
  127. function idn_to_utf8($domain, $options = IDNA_DEFAULT, $variant = INTL_IDNA_VARIANT_2003, &$idna_info = array()) { return p\Idn::idn_to_utf8($domain, $options, $variant, $idna_info); }
  128. }
  129. } else {
  130. if (!function_exists('idn_to_ascii')) {
  131. function idn_to_ascii($domain, $options = IDNA_DEFAULT, $variant = INTL_IDNA_VARIANT_UTS46, &$idna_info = array()) { return p\Idn::idn_to_ascii($domain, $options, $variant, $idna_info); }
  132. }
  133. if (!function_exists('idn_to_utf8')) {
  134. function idn_to_utf8($domain, $options = IDNA_DEFAULT, $variant = INTL_IDNA_VARIANT_UTS46, &$idna_info = array()) { return p\Idn::idn_to_utf8($domain, $options, $variant, $idna_info); }
  135. }
  136. }