php-src/ext/standard/tests/strings/strrpos_offset.phpt

42 lines
1.3 KiB
Plaintext
Raw Normal View History

2008-07-22 01:05:55 +00:00
--TEST--
strrpos() offset integer overflow
--FILE--
<?php
var_dump(strrpos("t", "t", PHP_INT_MAX+1));
var_dump(strrpos("tttt", "tt", PHP_INT_MAX+1));
var_dump(strrpos(100, 101, PHP_INT_MAX+1));
var_dump(strrpos(1024, 1024, PHP_INT_MAX+1));
var_dump(strrpos(1024, 1024, -PHP_INT_MAX));
var_dump(strrpos(1024, "te", -PHP_INT_MAX));
var_dump(strrpos(1024, 1024, -PHP_INT_MAX-1));
var_dump(strrpos(1024, "te", -PHP_INT_MAX-1));
echo "Done\n";
?>
--EXPECTF--
2009-02-15 07:04:59 +00:00
Warning: strrpos(): Offset is greater than the length of haystack string in %s on line %d
2008-07-22 01:05:55 +00:00
bool(false)
2009-02-15 07:04:59 +00:00
Warning: strrpos(): Offset is greater than the length of haystack string in %s on line %d
2008-07-22 01:05:55 +00:00
bool(false)
2009-02-15 07:04:59 +00:00
Warning: strrpos(): Offset is greater than the length of haystack string in %s on line %d
2008-07-22 01:05:55 +00:00
bool(false)
2009-02-15 07:04:59 +00:00
Warning: strrpos(): Offset is greater than the length of haystack string in %s on line %d
2008-07-22 01:05:55 +00:00
bool(false)
2009-02-15 07:04:59 +00:00
Warning: strrpos(): Offset is greater than the length of haystack string in %s on line %d
2008-07-22 01:05:55 +00:00
bool(false)
2009-02-15 07:04:59 +00:00
Warning: strrpos(): Offset is greater than the length of haystack string in %s on line %d
2008-07-22 01:05:55 +00:00
bool(false)
2009-02-15 07:04:59 +00:00
Warning: strrpos(): Offset is greater than the length of haystack string in %s on line %d
2008-07-22 01:05:55 +00:00
bool(false)
2009-02-15 07:04:59 +00:00
Warning: strrpos(): Offset is greater than the length of haystack string in %s on line %d
2008-07-22 01:05:55 +00:00
bool(false)
Done