Does anybody know of a PHP function that does a string search.... example.
5x92753 and I need to check if the string has '5x927' anywhere in it. Anybody know the function?
Printable View
Does anybody know of a PHP function that does a string search.... example.
5x92753 and I need to check if the string has '5x927' anywhere in it. Anybody know the function?
strpos function should work
http://www.php.net/manual/en/function.strpos.php
or if you want case-insensitive, try the stristr function.
http://www.php.net/manual/en/function.stristr.php