/
proc
/
self
/
root
/
usr
/
local
/
lsws
/
phpbuild
/
php-8.0.7
/
ext
/
standard
/
tests
/
strings
/
File Upload :
llllll
Current File: //proc/self/root/usr/local/lsws/phpbuild/php-8.0.7/ext/standard/tests/strings/stripos_error.phpt
--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 ***
Copyright ©2k19 -
Hexid
|
Tex7ure