TypePHP 编译器
https://swoole.com/aot/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
362 B
12 lines
362 B
--TEST--
|
|
Bug #54322: Null pointer deref in get_html_translation_table due to information loss in long-to-int conversion
|
|
--FILE--
|
|
<?php
|
|
try {
|
|
var_dump(get_html_translation_table(NAN, 0, "UTF-8") > 0);
|
|
} catch (TypeError $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
get_html_translation_table(): Argument #1 ($table) must be of type int, float given
|
|
|