EVOLUTION-MANAGER
Edit File: EncodingDetector.php
<?php /** * Nexmo Client Library for PHP * * @copyright Copyright (c) 2016 Nexmo, Inc. (http://nexmo.com) * @license https://github.com/Nexmo/nexmo-php/blob/master/LICENSE.txt MIT License */ namespace Nexmo\Message; class EncodingDetector { public function requiresUnicodeEncoding($content) { $gsmCodePoints = array_map( $this->convertIntoUnicode(), [ // See: https://en.wikipedia.org/wiki/GSM_03.38#GSM_7-bit_default_alphabet_and_extension_table_of_3GPP_TS_23.038_/_GSM_03.38 '@', '£', '$', '¥', 'è', 'é', 'ù', 'ì', 'ò', 'ç', "\r", 'Ø', 'ø', "\n", 'Å', 'å', 'Δ', '_', 'Φ', 'Γ', 'Λ', 'Ω', 'Π', 'Ψ', 'Σ', 'Θ', 'Ξ', 'Æ', 'æ', 'ß', 'É', ' ', '!', '"', '#', '¤', '%', '&', '\'', '(', ')', '*', '+', ',', '-', '.', '/', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', ':', ';', '<', '=', '>', '?', '¡', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'Ä', 'Ö', 'Ñ', 'Ü', '§', '¿', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'ä', 'ö', 'ñ', 'ü', 'à', "\f", '^', '{', '}', '\\', '[', '~', ']', '|', '€', ] ); // Split $text into an array in a way that respects multibyte characters. $textChars = preg_split('//u', $content, null, PREG_SPLIT_NO_EMPTY); // Array of codepoint values for characters in $text. $textCodePoints = array_map($this->convertIntoUnicode(), $textChars); // Filter the array to contain only codepoints from $text that are not in the set of valid GSM codepoints. $nonGsmCodePoints = array_diff($textCodePoints, $gsmCodePoints); // The text contains unicode if the result is not empty. return !empty($nonGsmCodePoints); } private function convertIntoUnicode() { return function ($char) { $k = mb_convert_encoding($char, 'UTF-16LE', 'UTF-8'); $k1 = ord(substr($k, 0, 1)); $k2 = ord(substr($k, 1, 1)); return $k2 * 256 + $k1; }; } }