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.
48 lines
1.1 KiB
48 lines
1.1 KiB
--TEST--
|
|
strrpos() offset integer overflow
|
|
--SKIPIF--
|
|
<?php
|
|
echo 'skip Test output differs under AOT compilation';
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
|
|
try {
|
|
var_dump(strrpos("t", "t", PHP_INT_MAX+1));
|
|
} catch (TypeError $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
try {
|
|
strrpos(1024, 1024, -PHP_INT_MAX);
|
|
} catch (ValueError $exception) {
|
|
echo $exception->getMessage() . "\n";
|
|
}
|
|
|
|
try {
|
|
strrpos(1024, "te", -PHP_INT_MAX);
|
|
} catch (ValueError $exception) {
|
|
echo $exception->getMessage() . "\n";
|
|
}
|
|
|
|
try {
|
|
strrpos(1024, 1024, -PHP_INT_MAX-1);
|
|
} catch (ValueError $exception) {
|
|
echo $exception->getMessage() . "\n";
|
|
}
|
|
|
|
try {
|
|
strrpos(1024, "te", -PHP_INT_MAX-1);
|
|
} catch (ValueError $exception) {
|
|
echo $exception->getMessage() . "\n";
|
|
}
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECT--
|
|
strrpos(): Argument #3 ($offset) must be of type int, float given
|
|
strrpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack)
|
|
strrpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack)
|
|
strrpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack)
|
|
strrpos(): Argument #3 ($offset) must be contained in argument #1 ($haystack)
|
|
Done
|
|
|