summaryrefslogtreecommitdiff
path: root/ext/standard/tests/strings/strpos_number.phpt
blob: 76cf8e59ef6ca030637d2f2c9a404296aad2c93e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--TEST--
strpos() matching numbers
--FILE--
<?php
// Integer is handles as an octal representation, so nothing to match
var_dump(strpos("foo 11", 11));
// int(111) is string("o") in octal. Match expected
var_dump(strpos("foo bar", 111));
// string("11") is contained
var_dump(strpos("foo 11", "11"));
?>
--EXPECT--
int(4)
bool(false)
int(4)