Answers for "test if string contains php"

PHP
5

php string contains

$mystring = 'abc';
$findme   = 'a';
$pos = strpos($mystring, $findme);
Posted by: Guest on May-20-2020

Code answers related to "test if string contains php"

Browse Popular Code Answers by Language