Resources
5 years ago
LICENSE
5 years ago
Mbstring.php
5 years ago
README.md
5 years ago
bootstrap.php
5 years ago
bootstrap.php
142 lines
| 1 | <?php |
| 2 | |
| 3 | /* |
| 4 | * This file is part of the Symfony package. |
| 5 | * |
| 6 | * (c) Fabien Potencier <fabien@symfony.com> |
| 7 | * |
| 8 | * For the full copyright and license information, please view the LICENSE |
| 9 | * file that was distributed with this source code. |
| 10 | */ |
| 11 | |
| 12 | use Symfony\Polyfill\Mbstring as p; |
| 13 | |
| 14 | if (!function_exists('mb_convert_encoding')) { |
| 15 | function mb_convert_encoding($s, $to, $from = null) { return p\Mbstring::mb_convert_encoding($s, $to, $from); } |
| 16 | } |
| 17 | if (!function_exists('mb_decode_mimeheader')) { |
| 18 | function mb_decode_mimeheader($s) { return p\Mbstring::mb_decode_mimeheader($s); } |
| 19 | } |
| 20 | if (!function_exists('mb_encode_mimeheader')) { |
| 21 | function mb_encode_mimeheader($s, $charset = null, $transferEnc = null, $lf = null, $indent = null) { return p\Mbstring::mb_encode_mimeheader($s, $charset, $transferEnc, $lf, $indent); } |
| 22 | } |
| 23 | if (!function_exists('mb_decode_numericentity')) { |
| 24 | function mb_decode_numericentity($s, $convmap, $enc = null) { return p\Mbstring::mb_decode_numericentity($s, $convmap, $enc); } |
| 25 | } |
| 26 | if (!function_exists('mb_encode_numericentity')) { |
| 27 | function mb_encode_numericentity($s, $convmap, $enc = null, $is_hex = false) { return p\Mbstring::mb_encode_numericentity($s, $convmap, $enc, $is_hex); } |
| 28 | } |
| 29 | if (!function_exists('mb_convert_case')) { |
| 30 | function mb_convert_case($s, $mode, $enc = null) { return p\Mbstring::mb_convert_case($s, $mode, $enc); } |
| 31 | } |
| 32 | if (!function_exists('mb_internal_encoding')) { |
| 33 | function mb_internal_encoding($enc = null) { return p\Mbstring::mb_internal_encoding($enc); } |
| 34 | } |
| 35 | if (!function_exists('mb_language')) { |
| 36 | function mb_language($lang = null) { return p\Mbstring::mb_language($lang); } |
| 37 | } |
| 38 | if (!function_exists('mb_list_encodings')) { |
| 39 | function mb_list_encodings() { return p\Mbstring::mb_list_encodings(); } |
| 40 | } |
| 41 | if (!function_exists('mb_encoding_aliases')) { |
| 42 | function mb_encoding_aliases($encoding) { return p\Mbstring::mb_encoding_aliases($encoding); } |
| 43 | } |
| 44 | if (!function_exists('mb_check_encoding')) { |
| 45 | function mb_check_encoding($var = null, $encoding = null) { return p\Mbstring::mb_check_encoding($var, $encoding); } |
| 46 | } |
| 47 | if (!function_exists('mb_detect_encoding')) { |
| 48 | function mb_detect_encoding($str, $encodingList = null, $strict = false) { return p\Mbstring::mb_detect_encoding($str, $encodingList, $strict); } |
| 49 | } |
| 50 | if (!function_exists('mb_detect_order')) { |
| 51 | function mb_detect_order($encodingList = null) { return p\Mbstring::mb_detect_order($encodingList); } |
| 52 | } |
| 53 | if (!function_exists('mb_parse_str')) { |
| 54 | function mb_parse_str($s, &$result = array()) { parse_str($s, $result); } |
| 55 | } |
| 56 | if (!function_exists('mb_strlen')) { |
| 57 | function mb_strlen($s, $enc = null) { return p\Mbstring::mb_strlen($s, $enc); } |
| 58 | } |
| 59 | if (!function_exists('mb_strpos')) { |
| 60 | function mb_strpos($s, $needle, $offset = 0, $enc = null) { return p\Mbstring::mb_strpos($s, $needle, $offset, $enc); } |
| 61 | } |
| 62 | if (!function_exists('mb_strtolower')) { |
| 63 | function mb_strtolower($s, $enc = null) { return p\Mbstring::mb_strtolower($s, $enc); } |
| 64 | } |
| 65 | if (!function_exists('mb_strtoupper')) { |
| 66 | function mb_strtoupper($s, $enc = null) { return p\Mbstring::mb_strtoupper($s, $enc); } |
| 67 | } |
| 68 | if (!function_exists('mb_substitute_character')) { |
| 69 | function mb_substitute_character($char = null) { return p\Mbstring::mb_substitute_character($char); } |
| 70 | } |
| 71 | if (!function_exists('mb_substr')) { |
| 72 | function mb_substr($s, $start, $length = 2147483647, $enc = null) { return p\Mbstring::mb_substr($s, $start, $length, $enc); } |
| 73 | } |
| 74 | if (!function_exists('mb_stripos')) { |
| 75 | function mb_stripos($s, $needle, $offset = 0, $enc = null) { return p\Mbstring::mb_stripos($s, $needle, $offset, $enc); } |
| 76 | } |
| 77 | if (!function_exists('mb_stristr')) { |
| 78 | function mb_stristr($s, $needle, $part = false, $enc = null) { return p\Mbstring::mb_stristr($s, $needle, $part, $enc); } |
| 79 | } |
| 80 | if (!function_exists('mb_strrchr')) { |
| 81 | function mb_strrchr($s, $needle, $part = false, $enc = null) { return p\Mbstring::mb_strrchr($s, $needle, $part, $enc); } |
| 82 | } |
| 83 | if (!function_exists('mb_strrichr')) { |
| 84 | function mb_strrichr($s, $needle, $part = false, $enc = null) { return p\Mbstring::mb_strrichr($s, $needle, $part, $enc); } |
| 85 | } |
| 86 | if (!function_exists('mb_strripos')) { |
| 87 | function mb_strripos($s, $needle, $offset = 0, $enc = null) { return p\Mbstring::mb_strripos($s, $needle, $offset, $enc); } |
| 88 | } |
| 89 | if (!function_exists('mb_strrpos')) { |
| 90 | function mb_strrpos($s, $needle, $offset = 0, $enc = null) { return p\Mbstring::mb_strrpos($s, $needle, $offset, $enc); } |
| 91 | } |
| 92 | if (!function_exists('mb_strstr')) { |
| 93 | function mb_strstr($s, $needle, $part = false, $enc = null) { return p\Mbstring::mb_strstr($s, $needle, $part, $enc); } |
| 94 | } |
| 95 | if (!function_exists('mb_get_info')) { |
| 96 | function mb_get_info($type = 'all') { return p\Mbstring::mb_get_info($type); } |
| 97 | } |
| 98 | if (!function_exists('mb_http_output')) { |
| 99 | function mb_http_output($enc = null) { return p\Mbstring::mb_http_output($enc); } |
| 100 | } |
| 101 | if (!function_exists('mb_strwidth')) { |
| 102 | function mb_strwidth($s, $enc = null) { return p\Mbstring::mb_strwidth($s, $enc); } |
| 103 | } |
| 104 | if (!function_exists('mb_substr_count')) { |
| 105 | function mb_substr_count($haystack, $needle, $enc = null) { return p\Mbstring::mb_substr_count($haystack, $needle, $enc); } |
| 106 | } |
| 107 | if (!function_exists('mb_output_handler')) { |
| 108 | function mb_output_handler($contents, $status) { return p\Mbstring::mb_output_handler($contents, $status); } |
| 109 | } |
| 110 | if (!function_exists('mb_http_input')) { |
| 111 | function mb_http_input($type = '') { return p\Mbstring::mb_http_input($type); } |
| 112 | } |
| 113 | if (!function_exists('mb_convert_variables')) { |
| 114 | function mb_convert_variables($toEncoding, $fromEncoding, &$a = null, &$b = null, &$c = null, &$d = null, &$e = null, &$f = null) { return p\Mbstring::mb_convert_variables($toEncoding, $fromEncoding, $a, $b, $c, $d, $e, $f); } |
| 115 | } |
| 116 | if (!function_exists('mb_ord')) { |
| 117 | function mb_ord($s, $enc = null) { return p\Mbstring::mb_ord($s, $enc); } |
| 118 | } |
| 119 | if (!function_exists('mb_chr')) { |
| 120 | function mb_chr($code, $enc = null) { return p\Mbstring::mb_chr($code, $enc); } |
| 121 | } |
| 122 | if (!function_exists('mb_scrub')) { |
| 123 | function mb_scrub($s, $enc = null) { $enc = null === $enc ? mb_internal_encoding() : $enc; return mb_convert_encoding($s, $enc, $enc); } |
| 124 | } |
| 125 | if (!function_exists('mb_str_split')) { |
| 126 | function mb_str_split($string, $split_length = 1, $encoding = null) { return p\Mbstring::mb_str_split($string, $split_length, $encoding); } |
| 127 | } |
| 128 | |
| 129 | if (extension_loaded('mbstring')) { |
| 130 | return; |
| 131 | } |
| 132 | |
| 133 | if (!defined('MB_CASE_UPPER')) { |
| 134 | define('MB_CASE_UPPER', 0); |
| 135 | } |
| 136 | if (!defined('MB_CASE_LOWER')) { |
| 137 | define('MB_CASE_LOWER', 1); |
| 138 | } |
| 139 | if (!defined('MB_CASE_TITLE')) { |
| 140 | define('MB_CASE_TITLE', 2); |
| 141 | } |
| 142 |