Lines Matching refs:digits
46 echo "6: " . mb_decode_numericentity('�', $convmap), "\n"; // Too many digits
47 echo "7: " . mb_decode_numericentity('�', $convmap), "\n"; // Too many digits
48 echo "8: " . mb_decode_numericentity('�', $convmap), "\n"; // Too many digits
49 echo "9: " . mb_decode_numericentity('�', $convmap), "\n"; // Too many digits
56 echo "11e: " . mb_decode_numericentity('�', $convmap), "\n"; // Too many digits
81 test("10 digits for decimal entity", "A", "A", [0, 0xFFFF, 0, 0xFFFF], 'ASCII');
82 test("More than 10 digits for decimal entity", "¥", "¥", [0, 0xFFFF, 0, 0…
84 test("8 digits for hex entity", "A", "A", [0, 0xFFFF, 0, 0xFFFF], 'ASCII');
85 test("More than 8 digits for hex entity", "Ł", "Ł", [0, 0xFFFF, 0, 0xFFFF],…
132 die("Decimal entity with huge number of digits broken");
136 die("Hexadecimal entity with huge number of digits broken");
164 10 digits for decimal entity: string(13) "A" => string(1) "A" (Good)
165 More than 10 digits for decimal entity: string(14) "¥" => string(14) "¥" …
166 8 digits for hex entity: string(12) "A" => string(1) "A" (Good)
167 More than 8 digits for hex entity: string(13) "Ł" => string(13) "Ł" (Good)