1--TEST-- 2strpos() matching numbers 3--FILE-- 4<?php 5// Integer is handles as an octal representation, so nothing to match 6var_dump(strpos("foo 11", 11)); 7// int(111) is string("o") in octal. Match expected 8var_dump(strpos("foo bar", 111)); 9// string("11") is contained 10var_dump(strpos("foo 11", "11")); 11?> 12--EXPECT-- 13bool(false) 14int(1) 15int(4) 16