![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/demo.intellicart.co/vendor/zbateson/mb-wrapper/ |
# zbateson/mb-wrapper Charset conversion and string manipulation wrapper with a large defined set of aliases. [](https://github.com/zbateson/mb-wrapper.svg/actions/workflows/tests.yml) [](https://scrutinizer-ci.com/g/zbateson/mb-wrapper/?branch=master) [](https://scrutinizer-ci.com/g/zbateson/mb-wrapper/?branch=master) [](https://packagist.org/packages/zbateson/mb-wrapper) [](https://packagist.org/packages/zbateson/mb-wrapper) The goals of this project are to be: * Well written * Tested where possible * Support as wide a range of charset aliases as possible To include it for use in your project, please install via composer: ``` composer require zbateson/mb-wrapper ``` ## Requirements mb-wrapper requires PHP 7.1 or newer. Tested on PHP 7.1, 7.2, 7.3, 7.4, 8.0, 8.1, and 8.2 on GitHub Actions. ## Description MbWrapper is intended for use wherever mb_* or iconv_* is used. It scans supported charsets returned by mb_list_encodings(), and prefers mb_* functions, but will fallback to iconv if a charset isn't supported. A list of aliased charsets is maintained for both mb_* and iconv, where a supported charset exists for an alias. This is useful for mail and http parsing as other systems may report encodings not recognized by mb_* or iconv. Charset lookup is done by removing non-alphanumeric characters as well, so UTF8 will always be matched to UTF-8, etc... ## Usage The following wrapper methods are exposed: * mb_convert_encoding, iconv with MbWrapper::convert * mb_substr, iconv_substr with MbWrapper::getSubstr * mb_strlen, iconv_strlen with MbWrapper::getLength * mb_check_encoding, iconv (for verification) with MbWrapper::checkEncoding ```php $mbWrapper = new \ZBateson\MbWrapper\MbWrapper(); $fromCharset = 'ISO-8859-1'; $toCharset = 'UTF-8'; $mbWrapper->convert('data', $fromCharset, $toCharset); $mbWrapper->getLength('data', 'UTF-8'); $mbWrapper->substr('data', 'UTF-8', 1, 2); if ($mbWrapper->checkEncoding('data', 'UTF-8')) { echo 'Compatible'; } ``` ## License BSD licensed - please see [license agreement](https://github.com/zbateson/mb-wrapper/blob/master/LICENSE).