Searched refs:is_hex (Results 1 – 2 of 2) sorted by relevance
217 $is_hex = (@$entity[2] === 'x');218 $code = $is_hex ? hexdec($matches[1]) : (int) $matches[2];272 $is_hex = (@$entity[2] === 'x');273 $int = $is_hex ? hexdec($matches[1]) : (int) $matches[2];
201 public static function mb_encode_numericentity($s, $convmap, $encoding = null, $is_hex = false) argument219 if (null !== $is_hex && !\is_scalar($is_hex)) {257 $result .= $is_hex ? sprintf('&#x%X;', $cOffset) : '&#'.$cOffset.';';