mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
23 lines
659 B
PHP
23 lines
659 B
PHP
--TEST--
|
|
mb_encode_numericentity() map errors
|
|
--EXTENSIONS--
|
|
mbstring
|
|
--FILE--
|
|
<?php
|
|
try {
|
|
$convmap = array(0xFF, 0x2FFFF, 0); // 3 elements
|
|
echo mb_encode_numericentity('str', $convmap, "UTF-8") . "\n";
|
|
} catch (ValueError $ex) {
|
|
echo $ex->getMessage(), "\n";
|
|
}
|
|
try {
|
|
$convmap = array(0xFF, "not an int", 0, 0); // 3 elements
|
|
echo mb_encode_numericentity('str', $convmap, "UTF-8") . "\n";
|
|
} catch (ValueError $ex) {
|
|
echo $ex->getMessage(), "\n";
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|
|
mb_encode_numericentity(): Argument #2 ($map) must have a multiple of 4 elements
|
|
mb_encode_numericentity(): Argument #2 ($map) must only be composed of values of type int
|