summaryrefslogtreecommitdiff
path: root/ext/standard/tests/strings/strrpos_offset.phpt
blob: fdff39fdb2446d9689794a1f6d5c85938b4c326e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
--TEST--
strrpos() offset integer overflow
--FILE--
<?php

try {
    var_dump(strrpos("t", "t", PHP_INT_MAX+1));
} catch (TypeError $e) {
    echo $e->getMessage(), "\n";
}

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--
strrpos() expects parameter 3 to be int, float given

Warning: strrpos(): Offset not contained in string in %s on line %d
bool(false)

Warning: strrpos(): Offset not contained in string in %s on line %d
bool(false)

Warning: strrpos(): Offset not contained in string in %s on line %d
bool(false)

Warning: strrpos(): Offset not contained in string in %s on line %d
bool(false)
Done