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.
 
 

31 lines
831 B

--TEST--
Test stripos() function : error conditions
--FILE--
<?php
echo "*** Testing stripos() function: error conditions ***\n";
echo "\n-- Offset beyond the end of the string --\n";
try {
stripos("Hello World", "o", 12);
} catch (ValueError $exception) {
echo $exception->getMessage() . "\n";
}
echo "\n-- Offset before the start of the string --\n";
try {
stripos("Hello World", "o", -12);
} catch (ValueError $exception) {
echo $exception->getMessage() . "\n";
}
echo "*** Done ***";
?>
--EXPECT--
*** Testing stripos() function: error conditions ***
-- Offset beyond the end of the string --
stripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack)
-- Offset before the start of the string --
stripos(): Argument #3 ($offset) must be contained in argument #1 ($haystack)
*** Done ***