Home
last modified time | relevance | path

Searched refs:is_hex (Results 1 – 2 of 2) sorted by relevance

/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/
DEntityParser.php217 $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];
/plugin/combo/vendor/symfony/polyfill-mbstring/
H A DMbstring.php201 public static function mb_encode_numericentity($s, $convmap, $encoding = null, $is_hex = false) argument
219 if (null !== $is_hex && !\is_scalar($is_hex)) {
257 $result .= $is_hex ? sprintf('&#x%X;', $cOffset) : '&#'.$cOffset.';';