<?php$foo = (string) 123;$bar = (string) 2;if (strstr($foo, $bar) != false) { echo 'Found';} else { echo 'Not found';}