Lines Matching refs:m
183 …ce_callback('/&#(?:0*([0-9]+)|x0*([0-9a-fA-F]+))(?!&);?/', function (array $m) use ($cnt, $convmap…
184 $c = isset($m[2]) ? (int) hexdec($m[2]) : $m[1];
191 return $m[0];
812 private static function html_encoding_callback(array $m) argument
816 $m = unpack('C*', htmlentities($m[0], \ENT_COMPAT, 'UTF-8'));
818 while (isset($m[$i])) {
819 if (0x80 > $m[$i]) {
820 $entities .= \chr($m[$i++]);
823 if (0xF0 <= $m[$i]) {
824 …$c = (($m[$i++] - 0xF0) << 18) + (($m[$i++] - 0x80) << 12) + (($m[$i++] - 0x80) << 6) + $m[$i++] -…
825 } elseif (0xE0 <= $m[$i]) {
826 $c = (($m[$i++] - 0xE0) << 12) + (($m[$i++] - 0x80) << 6) + $m[$i++] - 0x80;
828 $c = (($m[$i++] - 0xC0) << 6) + $m[$i++] - 0x80;