Mbstring.php 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846
  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. namespace Symfony\Polyfill\Mbstring;
  11. /**
  12. * Partial mbstring implementation in PHP, iconv based, UTF-8 centric.
  13. *
  14. * Implemented:
  15. * - mb_chr - Returns a specific character from its Unicode code point
  16. * - mb_convert_encoding - Convert character encoding
  17. * - mb_convert_variables - Convert character code in variable(s)
  18. * - mb_decode_mimeheader - Decode string in MIME header field
  19. * - mb_encode_mimeheader - Encode string for MIME header XXX NATIVE IMPLEMENTATION IS REALLY BUGGED
  20. * - mb_decode_numericentity - Decode HTML numeric string reference to character
  21. * - mb_encode_numericentity - Encode character to HTML numeric string reference
  22. * - mb_convert_case - Perform case folding on a string
  23. * - mb_detect_encoding - Detect character encoding
  24. * - mb_get_info - Get internal settings of mbstring
  25. * - mb_http_input - Detect HTTP input character encoding
  26. * - mb_http_output - Set/Get HTTP output character encoding
  27. * - mb_internal_encoding - Set/Get internal character encoding
  28. * - mb_list_encodings - Returns an array of all supported encodings
  29. * - mb_ord - Returns the Unicode code point of a character
  30. * - mb_output_handler - Callback function converts character encoding in output buffer
  31. * - mb_scrub - Replaces ill-formed byte sequences with substitute characters
  32. * - mb_strlen - Get string length
  33. * - mb_strpos - Find position of first occurrence of string in a string
  34. * - mb_strrpos - Find position of last occurrence of a string in a string
  35. * - mb_str_split - Convert a string to an array
  36. * - mb_strtolower - Make a string lowercase
  37. * - mb_strtoupper - Make a string uppercase
  38. * - mb_substitute_character - Set/Get substitution character
  39. * - mb_substr - Get part of string
  40. * - mb_stripos - Finds position of first occurrence of a string within another, case insensitive
  41. * - mb_stristr - Finds first occurrence of a string within another, case insensitive
  42. * - mb_strrchr - Finds the last occurrence of a character in a string within another
  43. * - mb_strrichr - Finds the last occurrence of a character in a string within another, case insensitive
  44. * - mb_strripos - Finds position of last occurrence of a string within another, case insensitive
  45. * - mb_strstr - Finds first occurrence of a string within another
  46. * - mb_strwidth - Return width of string
  47. * - mb_substr_count - Count the number of substring occurrences
  48. *
  49. * Not implemented:
  50. * - mb_convert_kana - Convert "kana" one from another ("zen-kaku", "han-kaku" and more)
  51. * - mb_ereg_* - Regular expression with multibyte support
  52. * - mb_parse_str - Parse GET/POST/COOKIE data and set global variable
  53. * - mb_preferred_mime_name - Get MIME charset string
  54. * - mb_regex_encoding - Returns current encoding for multibyte regex as string
  55. * - mb_regex_set_options - Set/Get the default options for mbregex functions
  56. * - mb_send_mail - Send encoded mail
  57. * - mb_split - Split multibyte string using regular expression
  58. * - mb_strcut - Get part of string
  59. * - mb_strimwidth - Get truncated string with specified width
  60. *
  61. * @author Nicolas Grekas <p@tchwork.com>
  62. *
  63. * @internal
  64. */
  65. final class Mbstring
  66. {
  67. const MB_CASE_FOLD = PHP_INT_MAX;
  68. private static $encodingList = array('ASCII', 'UTF-8');
  69. private static $language = 'neutral';
  70. private static $internalEncoding = 'UTF-8';
  71. private static $caseFold = array(
  72. array('µ', 'ſ', "\xCD\x85", 'ς', "\xCF\x90", "\xCF\x91", "\xCF\x95", "\xCF\x96", "\xCF\xB0", "\xCF\xB1", "\xCF\xB5", "\xE1\xBA\x9B", "\xE1\xBE\xBE"),
  73. array('μ', 's', 'ι', 'σ', 'β', 'θ', 'φ', 'π', 'κ', 'ρ', 'ε', "\xE1\xB9\xA1", 'ι'),
  74. );
  75. public static function mb_convert_encoding($s, $toEncoding, $fromEncoding = null)
  76. {
  77. if (\is_array($fromEncoding) || false !== strpos($fromEncoding, ',')) {
  78. $fromEncoding = self::mb_detect_encoding($s, $fromEncoding);
  79. } else {
  80. $fromEncoding = self::getEncoding($fromEncoding);
  81. }
  82. $toEncoding = self::getEncoding($toEncoding);
  83. if ('BASE64' === $fromEncoding) {
  84. $s = base64_decode($s);
  85. $fromEncoding = $toEncoding;
  86. }
  87. if ('BASE64' === $toEncoding) {
  88. return base64_encode($s);
  89. }
  90. if ('HTML-ENTITIES' === $toEncoding || 'HTML' === $toEncoding) {
  91. if ('HTML-ENTITIES' === $fromEncoding || 'HTML' === $fromEncoding) {
  92. $fromEncoding = 'Windows-1252';
  93. }
  94. if ('UTF-8' !== $fromEncoding) {
  95. $s = iconv($fromEncoding, 'UTF-8//IGNORE', $s);
  96. }
  97. return preg_replace_callback('/[\x80-\xFF]+/', array(__CLASS__, 'html_encoding_callback'), $s);
  98. }
  99. if ('HTML-ENTITIES' === $fromEncoding) {
  100. $s = html_entity_decode($s, ENT_COMPAT, 'UTF-8');
  101. $fromEncoding = 'UTF-8';
  102. }
  103. return iconv($fromEncoding, $toEncoding.'//IGNORE', $s);
  104. }
  105. public static function mb_convert_variables($toEncoding, $fromEncoding, &...$vars)
  106. {
  107. $ok = true;
  108. array_walk_recursive($vars, function (&$v) use (&$ok, $toEncoding, $fromEncoding) {
  109. if (false === $v = Mbstring::mb_convert_encoding($v, $toEncoding, $fromEncoding)) {
  110. $ok = false;
  111. }
  112. });
  113. return $ok ? $fromEncoding : false;
  114. }
  115. public static function mb_decode_mimeheader($s)
  116. {
  117. return iconv_mime_decode($s, 2, self::$internalEncoding);
  118. }
  119. public static function mb_encode_mimeheader($s, $charset = null, $transferEncoding = null, $linefeed = null, $indent = null)
  120. {
  121. trigger_error('mb_encode_mimeheader() is bugged. Please use iconv_mime_encode() instead', E_USER_WARNING);
  122. }
  123. public static function mb_decode_numericentity($s, $convmap, $encoding = null)
  124. {
  125. if (null !== $s && !\is_scalar($s) && !(\is_object($s) && \method_exists($s, '__toString'))) {
  126. trigger_error('mb_decode_numericentity() expects parameter 1 to be string, '.\gettype($s).' given', E_USER_WARNING);
  127. return null;
  128. }
  129. if (!\is_array($convmap) || !$convmap) {
  130. return false;
  131. }
  132. if (null !== $encoding && !\is_scalar($encoding)) {
  133. trigger_error('mb_decode_numericentity() expects parameter 3 to be string, '.\gettype($s).' given', E_USER_WARNING);
  134. return ''; // Instead of null (cf. mb_encode_numericentity).
  135. }
  136. $s = (string) $s;
  137. if ('' === $s) {
  138. return '';
  139. }
  140. $encoding = self::getEncoding($encoding);
  141. if ('UTF-8' === $encoding) {
  142. $encoding = null;
  143. if (!preg_match('//u', $s)) {
  144. $s = @iconv('UTF-8', 'UTF-8//IGNORE', $s);
  145. }
  146. } else {
  147. $s = iconv($encoding, 'UTF-8//IGNORE', $s);
  148. }
  149. $cnt = floor(\count($convmap) / 4) * 4;
  150. for ($i = 0; $i < $cnt; $i += 4) {
  151. // collector_decode_htmlnumericentity ignores $convmap[$i + 3]
  152. $convmap[$i] += $convmap[$i + 2];
  153. $convmap[$i + 1] += $convmap[$i + 2];
  154. }
  155. $s = preg_replace_callback('/&#(?:0*([0-9]+)|x0*([0-9a-fA-F]+))(?!&);?/', function (array $m) use ($cnt, $convmap) {
  156. $c = isset($m[2]) ? (int) hexdec($m[2]) : $m[1];
  157. for ($i = 0; $i < $cnt; $i += 4) {
  158. if ($c >= $convmap[$i] && $c <= $convmap[$i + 1]) {
  159. return Mbstring::mb_chr($c - $convmap[$i + 2]);
  160. }
  161. }
  162. return $m[0];
  163. }, $s);
  164. if (null === $encoding) {
  165. return $s;
  166. }
  167. return iconv('UTF-8', $encoding.'//IGNORE', $s);
  168. }
  169. public static function mb_encode_numericentity($s, $convmap, $encoding = null, $is_hex = false)
  170. {
  171. if (null !== $s && !\is_scalar($s) && !(\is_object($s) && \method_exists($s, '__toString'))) {
  172. trigger_error('mb_encode_numericentity() expects parameter 1 to be string, '.\gettype($s).' given', E_USER_WARNING);
  173. return null;
  174. }
  175. if (!\is_array($convmap) || !$convmap) {
  176. return false;
  177. }
  178. if (null !== $encoding && !\is_scalar($encoding)) {
  179. trigger_error('mb_encode_numericentity() expects parameter 3 to be string, '.\gettype($s).' given', E_USER_WARNING);
  180. return null; // Instead of '' (cf. mb_decode_numericentity).
  181. }
  182. if (null !== $is_hex && !\is_scalar($is_hex)) {
  183. trigger_error('mb_encode_numericentity() expects parameter 4 to be boolean, '.\gettype($s).' given', E_USER_WARNING);
  184. return null;
  185. }
  186. $s = (string) $s;
  187. if ('' === $s) {
  188. return '';
  189. }
  190. $encoding = self::getEncoding($encoding);
  191. if ('UTF-8' === $encoding) {
  192. $encoding = null;
  193. if (!preg_match('//u', $s)) {
  194. $s = @iconv('UTF-8', 'UTF-8//IGNORE', $s);
  195. }
  196. } else {
  197. $s = iconv($encoding, 'UTF-8//IGNORE', $s);
  198. }
  199. static $ulenMask = array("\xC0" => 2, "\xD0" => 2, "\xE0" => 3, "\xF0" => 4);
  200. $cnt = floor(\count($convmap) / 4) * 4;
  201. $i = 0;
  202. $len = \strlen($s);
  203. $result = '';
  204. while ($i < $len) {
  205. $ulen = $s[$i] < "\x80" ? 1 : $ulenMask[$s[$i] & "\xF0"];
  206. $uchr = substr($s, $i, $ulen);
  207. $i += $ulen;
  208. $c = self::mb_ord($uchr);
  209. for ($j = 0; $j < $cnt; $j += 4) {
  210. if ($c >= $convmap[$j] && $c <= $convmap[$j + 1]) {
  211. $cOffset = ($c + $convmap[$j + 2]) & $convmap[$j + 3];
  212. $result .= $is_hex ? sprintf('&#x%X;', $cOffset) : '&#'.$cOffset.';';
  213. continue 2;
  214. }
  215. }
  216. $result .= $uchr;
  217. }
  218. if (null === $encoding) {
  219. return $result;
  220. }
  221. return iconv('UTF-8', $encoding.'//IGNORE', $result);
  222. }
  223. public static function mb_convert_case($s, $mode, $encoding = null)
  224. {
  225. $s = (string) $s;
  226. if ('' === $s) {
  227. return '';
  228. }
  229. $encoding = self::getEncoding($encoding);
  230. if ('UTF-8' === $encoding) {
  231. $encoding = null;
  232. if (!preg_match('//u', $s)) {
  233. $s = @iconv('UTF-8', 'UTF-8//IGNORE', $s);
  234. }
  235. } else {
  236. $s = iconv($encoding, 'UTF-8//IGNORE', $s);
  237. }
  238. if (MB_CASE_TITLE == $mode) {
  239. static $titleRegexp = null;
  240. if (null === $titleRegexp) {
  241. $titleRegexp = self::getData('titleCaseRegexp');
  242. }
  243. $s = preg_replace_callback($titleRegexp, array(__CLASS__, 'title_case'), $s);
  244. } else {
  245. if (MB_CASE_UPPER == $mode) {
  246. static $upper = null;
  247. if (null === $upper) {
  248. $upper = self::getData('upperCase');
  249. }
  250. $map = $upper;
  251. } else {
  252. if (self::MB_CASE_FOLD === $mode) {
  253. $s = str_replace(self::$caseFold[0], self::$caseFold[1], $s);
  254. }
  255. static $lower = null;
  256. if (null === $lower) {
  257. $lower = self::getData('lowerCase');
  258. }
  259. $map = $lower;
  260. }
  261. static $ulenMask = array("\xC0" => 2, "\xD0" => 2, "\xE0" => 3, "\xF0" => 4);
  262. $i = 0;
  263. $len = \strlen($s);
  264. while ($i < $len) {
  265. $ulen = $s[$i] < "\x80" ? 1 : $ulenMask[$s[$i] & "\xF0"];
  266. $uchr = substr($s, $i, $ulen);
  267. $i += $ulen;
  268. if (isset($map[$uchr])) {
  269. $uchr = $map[$uchr];
  270. $nlen = \strlen($uchr);
  271. if ($nlen == $ulen) {
  272. $nlen = $i;
  273. do {
  274. $s[--$nlen] = $uchr[--$ulen];
  275. } while ($ulen);
  276. } else {
  277. $s = substr_replace($s, $uchr, $i - $ulen, $ulen);
  278. $len += $nlen - $ulen;
  279. $i += $nlen - $ulen;
  280. }
  281. }
  282. }
  283. }
  284. if (null === $encoding) {
  285. return $s;
  286. }
  287. return iconv('UTF-8', $encoding.'//IGNORE', $s);
  288. }
  289. public static function mb_internal_encoding($encoding = null)
  290. {
  291. if (null === $encoding) {
  292. return self::$internalEncoding;
  293. }
  294. $encoding = self::getEncoding($encoding);
  295. if ('UTF-8' === $encoding || false !== @iconv($encoding, $encoding, ' ')) {
  296. self::$internalEncoding = $encoding;
  297. return true;
  298. }
  299. return false;
  300. }
  301. public static function mb_language($lang = null)
  302. {
  303. if (null === $lang) {
  304. return self::$language;
  305. }
  306. switch ($lang = strtolower($lang)) {
  307. case 'uni':
  308. case 'neutral':
  309. self::$language = $lang;
  310. return true;
  311. }
  312. return false;
  313. }
  314. public static function mb_list_encodings()
  315. {
  316. return array('UTF-8');
  317. }
  318. public static function mb_encoding_aliases($encoding)
  319. {
  320. switch (strtoupper($encoding)) {
  321. case 'UTF8':
  322. case 'UTF-8':
  323. return array('utf8');
  324. }
  325. return false;
  326. }
  327. public static function mb_check_encoding($var = null, $encoding = null)
  328. {
  329. if (null === $encoding) {
  330. if (null === $var) {
  331. return false;
  332. }
  333. $encoding = self::$internalEncoding;
  334. }
  335. return self::mb_detect_encoding($var, array($encoding)) || false !== @iconv($encoding, $encoding, $var);
  336. }
  337. public static function mb_detect_encoding($str, $encodingList = null, $strict = false)
  338. {
  339. if (null === $encodingList) {
  340. $encodingList = self::$encodingList;
  341. } else {
  342. if (!\is_array($encodingList)) {
  343. $encodingList = array_map('trim', explode(',', $encodingList));
  344. }
  345. $encodingList = array_map('strtoupper', $encodingList);
  346. }
  347. foreach ($encodingList as $enc) {
  348. switch ($enc) {
  349. case 'ASCII':
  350. if (!preg_match('/[\x80-\xFF]/', $str)) {
  351. return $enc;
  352. }
  353. break;
  354. case 'UTF8':
  355. case 'UTF-8':
  356. if (preg_match('//u', $str)) {
  357. return 'UTF-8';
  358. }
  359. break;
  360. default:
  361. if (0 === strncmp($enc, 'ISO-8859-', 9)) {
  362. return $enc;
  363. }
  364. }
  365. }
  366. return false;
  367. }
  368. public static function mb_detect_order($encodingList = null)
  369. {
  370. if (null === $encodingList) {
  371. return self::$encodingList;
  372. }
  373. if (!\is_array($encodingList)) {
  374. $encodingList = array_map('trim', explode(',', $encodingList));
  375. }
  376. $encodingList = array_map('strtoupper', $encodingList);
  377. foreach ($encodingList as $enc) {
  378. switch ($enc) {
  379. default:
  380. if (strncmp($enc, 'ISO-8859-', 9)) {
  381. return false;
  382. }
  383. // no break
  384. case 'ASCII':
  385. case 'UTF8':
  386. case 'UTF-8':
  387. }
  388. }
  389. self::$encodingList = $encodingList;
  390. return true;
  391. }
  392. public static function mb_strlen($s, $encoding = null)
  393. {
  394. $encoding = self::getEncoding($encoding);
  395. if ('CP850' === $encoding || 'ASCII' === $encoding) {
  396. return \strlen($s);
  397. }
  398. return @iconv_strlen($s, $encoding);
  399. }
  400. public static function mb_strpos($haystack, $needle, $offset = 0, $encoding = null)
  401. {
  402. $encoding = self::getEncoding($encoding);
  403. if ('CP850' === $encoding || 'ASCII' === $encoding) {
  404. return strpos($haystack, $needle, $offset);
  405. }
  406. $needle = (string) $needle;
  407. if ('' === $needle) {
  408. trigger_error(__METHOD__.': Empty delimiter', E_USER_WARNING);
  409. return false;
  410. }
  411. return iconv_strpos($haystack, $needle, $offset, $encoding);
  412. }
  413. public static function mb_strrpos($haystack, $needle, $offset = 0, $encoding = null)
  414. {
  415. $encoding = self::getEncoding($encoding);
  416. if ('CP850' === $encoding || 'ASCII' === $encoding) {
  417. return strrpos($haystack, $needle, $offset);
  418. }
  419. if ($offset != (int) $offset) {
  420. $offset = 0;
  421. } elseif ($offset = (int) $offset) {
  422. if ($offset < 0) {
  423. if (0 > $offset += self::mb_strlen($needle)) {
  424. $haystack = self::mb_substr($haystack, 0, $offset, $encoding);
  425. }
  426. $offset = 0;
  427. } else {
  428. $haystack = self::mb_substr($haystack, $offset, 2147483647, $encoding);
  429. }
  430. }
  431. $pos = iconv_strrpos($haystack, $needle, $encoding);
  432. return false !== $pos ? $offset + $pos : false;
  433. }
  434. public static function mb_str_split($string, $split_length = 1, $encoding = null)
  435. {
  436. if (null !== $string && !\is_scalar($string) && !(\is_object($string) && \method_exists($string, '__toString'))) {
  437. trigger_error('mb_str_split() expects parameter 1 to be string, '.\gettype($string).' given', E_USER_WARNING);
  438. return null;
  439. }
  440. if (1 > $split_length = (int) $split_length) {
  441. trigger_error('The length of each segment must be greater than zero', E_USER_WARNING);
  442. return false;
  443. }
  444. if (null === $encoding) {
  445. $encoding = mb_internal_encoding();
  446. }
  447. if ('UTF-8' === $encoding = self::getEncoding($encoding)) {
  448. $rx = '/(';
  449. while (65535 < $split_length) {
  450. $rx .= '.{65535}';
  451. $split_length -= 65535;
  452. }
  453. $rx .= '.{'.$split_length.'})/us';
  454. return preg_split($rx, $string, null, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY);
  455. }
  456. $result = array();
  457. $length = mb_strlen($string, $encoding);
  458. for ($i = 0; $i < $length; $i += $split_length) {
  459. $result[] = mb_substr($string, $i, $split_length, $encoding);
  460. }
  461. return $result;
  462. }
  463. public static function mb_strtolower($s, $encoding = null)
  464. {
  465. return self::mb_convert_case($s, MB_CASE_LOWER, $encoding);
  466. }
  467. public static function mb_strtoupper($s, $encoding = null)
  468. {
  469. return self::mb_convert_case($s, MB_CASE_UPPER, $encoding);
  470. }
  471. public static function mb_substitute_character($c = null)
  472. {
  473. if (0 === strcasecmp($c, 'none')) {
  474. return true;
  475. }
  476. return null !== $c ? false : 'none';
  477. }
  478. public static function mb_substr($s, $start, $length = null, $encoding = null)
  479. {
  480. $encoding = self::getEncoding($encoding);
  481. if ('CP850' === $encoding || 'ASCII' === $encoding) {
  482. return (string) substr($s, $start, null === $length ? 2147483647 : $length);
  483. }
  484. if ($start < 0) {
  485. $start = iconv_strlen($s, $encoding) + $start;
  486. if ($start < 0) {
  487. $start = 0;
  488. }
  489. }
  490. if (null === $length) {
  491. $length = 2147483647;
  492. } elseif ($length < 0) {
  493. $length = iconv_strlen($s, $encoding) + $length - $start;
  494. if ($length < 0) {
  495. return '';
  496. }
  497. }
  498. return (string) iconv_substr($s, $start, $length, $encoding);
  499. }
  500. public static function mb_stripos($haystack, $needle, $offset = 0, $encoding = null)
  501. {
  502. $haystack = self::mb_convert_case($haystack, self::MB_CASE_FOLD, $encoding);
  503. $needle = self::mb_convert_case($needle, self::MB_CASE_FOLD, $encoding);
  504. return self::mb_strpos($haystack, $needle, $offset, $encoding);
  505. }
  506. public static function mb_stristr($haystack, $needle, $part = false, $encoding = null)
  507. {
  508. $pos = self::mb_stripos($haystack, $needle, 0, $encoding);
  509. return self::getSubpart($pos, $part, $haystack, $encoding);
  510. }
  511. public static function mb_strrchr($haystack, $needle, $part = false, $encoding = null)
  512. {
  513. $encoding = self::getEncoding($encoding);
  514. if ('CP850' === $encoding || 'ASCII' === $encoding) {
  515. $pos = strrpos($haystack, $needle);
  516. } else {
  517. $needle = self::mb_substr($needle, 0, 1, $encoding);
  518. $pos = iconv_strrpos($haystack, $needle, $encoding);
  519. }
  520. return self::getSubpart($pos, $part, $haystack, $encoding);
  521. }
  522. public static function mb_strrichr($haystack, $needle, $part = false, $encoding = null)
  523. {
  524. $needle = self::mb_substr($needle, 0, 1, $encoding);
  525. $pos = self::mb_strripos($haystack, $needle, $encoding);
  526. return self::getSubpart($pos, $part, $haystack, $encoding);
  527. }
  528. public static function mb_strripos($haystack, $needle, $offset = 0, $encoding = null)
  529. {
  530. $haystack = self::mb_convert_case($haystack, self::MB_CASE_FOLD, $encoding);
  531. $needle = self::mb_convert_case($needle, self::MB_CASE_FOLD, $encoding);
  532. return self::mb_strrpos($haystack, $needle, $offset, $encoding);
  533. }
  534. public static function mb_strstr($haystack, $needle, $part = false, $encoding = null)
  535. {
  536. $pos = strpos($haystack, $needle);
  537. if (false === $pos) {
  538. return false;
  539. }
  540. if ($part) {
  541. return substr($haystack, 0, $pos);
  542. }
  543. return substr($haystack, $pos);
  544. }
  545. public static function mb_get_info($type = 'all')
  546. {
  547. $info = array(
  548. 'internal_encoding' => self::$internalEncoding,
  549. 'http_output' => 'pass',
  550. 'http_output_conv_mimetypes' => '^(text/|application/xhtml\+xml)',
  551. 'func_overload' => 0,
  552. 'func_overload_list' => 'no overload',
  553. 'mail_charset' => 'UTF-8',
  554. 'mail_header_encoding' => 'BASE64',
  555. 'mail_body_encoding' => 'BASE64',
  556. 'illegal_chars' => 0,
  557. 'encoding_translation' => 'Off',
  558. 'language' => self::$language,
  559. 'detect_order' => self::$encodingList,
  560. 'substitute_character' => 'none',
  561. 'strict_detection' => 'Off',
  562. );
  563. if ('all' === $type) {
  564. return $info;
  565. }
  566. if (isset($info[$type])) {
  567. return $info[$type];
  568. }
  569. return false;
  570. }
  571. public static function mb_http_input($type = '')
  572. {
  573. return false;
  574. }
  575. public static function mb_http_output($encoding = null)
  576. {
  577. return null !== $encoding ? 'pass' === $encoding : 'pass';
  578. }
  579. public static function mb_strwidth($s, $encoding = null)
  580. {
  581. $encoding = self::getEncoding($encoding);
  582. if ('UTF-8' !== $encoding) {
  583. $s = iconv($encoding, 'UTF-8//IGNORE', $s);
  584. }
  585. $s = preg_replace('/[\x{1100}-\x{115F}\x{2329}\x{232A}\x{2E80}-\x{303E}\x{3040}-\x{A4CF}\x{AC00}-\x{D7A3}\x{F900}-\x{FAFF}\x{FE10}-\x{FE19}\x{FE30}-\x{FE6F}\x{FF00}-\x{FF60}\x{FFE0}-\x{FFE6}\x{20000}-\x{2FFFD}\x{30000}-\x{3FFFD}]/u', '', $s, -1, $wide);
  586. return ($wide << 1) + iconv_strlen($s, 'UTF-8');
  587. }
  588. public static function mb_substr_count($haystack, $needle, $encoding = null)
  589. {
  590. return substr_count($haystack, $needle);
  591. }
  592. public static function mb_output_handler($contents, $status)
  593. {
  594. return $contents;
  595. }
  596. public static function mb_chr($code, $encoding = null)
  597. {
  598. if (0x80 > $code %= 0x200000) {
  599. $s = \chr($code);
  600. } elseif (0x800 > $code) {
  601. $s = \chr(0xC0 | $code >> 6).\chr(0x80 | $code & 0x3F);
  602. } elseif (0x10000 > $code) {
  603. $s = \chr(0xE0 | $code >> 12).\chr(0x80 | $code >> 6 & 0x3F).\chr(0x80 | $code & 0x3F);
  604. } else {
  605. $s = \chr(0xF0 | $code >> 18).\chr(0x80 | $code >> 12 & 0x3F).\chr(0x80 | $code >> 6 & 0x3F).\chr(0x80 | $code & 0x3F);
  606. }
  607. if ('UTF-8' !== $encoding = self::getEncoding($encoding)) {
  608. $s = mb_convert_encoding($s, $encoding, 'UTF-8');
  609. }
  610. return $s;
  611. }
  612. public static function mb_ord($s, $encoding = null)
  613. {
  614. if ('UTF-8' !== $encoding = self::getEncoding($encoding)) {
  615. $s = mb_convert_encoding($s, 'UTF-8', $encoding);
  616. }
  617. if (1 === \strlen($s)) {
  618. return \ord($s);
  619. }
  620. $code = ($s = unpack('C*', substr($s, 0, 4))) ? $s[1] : 0;
  621. if (0xF0 <= $code) {
  622. return (($code - 0xF0) << 18) + (($s[2] - 0x80) << 12) + (($s[3] - 0x80) << 6) + $s[4] - 0x80;
  623. }
  624. if (0xE0 <= $code) {
  625. return (($code - 0xE0) << 12) + (($s[2] - 0x80) << 6) + $s[3] - 0x80;
  626. }
  627. if (0xC0 <= $code) {
  628. return (($code - 0xC0) << 6) + $s[2] - 0x80;
  629. }
  630. return $code;
  631. }
  632. private static function getSubpart($pos, $part, $haystack, $encoding)
  633. {
  634. if (false === $pos) {
  635. return false;
  636. }
  637. if ($part) {
  638. return self::mb_substr($haystack, 0, $pos, $encoding);
  639. }
  640. return self::mb_substr($haystack, $pos, null, $encoding);
  641. }
  642. private static function html_encoding_callback(array $m)
  643. {
  644. $i = 1;
  645. $entities = '';
  646. $m = unpack('C*', htmlentities($m[0], ENT_COMPAT, 'UTF-8'));
  647. while (isset($m[$i])) {
  648. if (0x80 > $m[$i]) {
  649. $entities .= \chr($m[$i++]);
  650. continue;
  651. }
  652. if (0xF0 <= $m[$i]) {
  653. $c = (($m[$i++] - 0xF0) << 18) + (($m[$i++] - 0x80) << 12) + (($m[$i++] - 0x80) << 6) + $m[$i++] - 0x80;
  654. } elseif (0xE0 <= $m[$i]) {
  655. $c = (($m[$i++] - 0xE0) << 12) + (($m[$i++] - 0x80) << 6) + $m[$i++] - 0x80;
  656. } else {
  657. $c = (($m[$i++] - 0xC0) << 6) + $m[$i++] - 0x80;
  658. }
  659. $entities .= '&#'.$c.';';
  660. }
  661. return $entities;
  662. }
  663. private static function title_case(array $s)
  664. {
  665. return self::mb_convert_case($s[1], MB_CASE_UPPER, 'UTF-8').self::mb_convert_case($s[2], MB_CASE_LOWER, 'UTF-8');
  666. }
  667. private static function getData($file)
  668. {
  669. if (file_exists($file = __DIR__.'/Resources/unidata/'.$file.'.php')) {
  670. return require $file;
  671. }
  672. return false;
  673. }
  674. private static function getEncoding($encoding)
  675. {
  676. if (null === $encoding) {
  677. return self::$internalEncoding;
  678. }
  679. if ('UTF-8' === $encoding) {
  680. return 'UTF-8';
  681. }
  682. $encoding = strtoupper($encoding);
  683. if ('8BIT' === $encoding || 'BINARY' === $encoding) {
  684. return 'CP850';
  685. }
  686. if ('UTF8' === $encoding) {
  687. return 'UTF-8';
  688. }
  689. return $encoding;
  690. }
  691. }