Answers for "php search for substring in string"

PHP
6

php find if substring is in string

$result = strpos("haystack", "needle");

if ($result != false)
{
  // text found
}
Posted by: Guest on March-13-2020

Code answers related to "php search for substring in string"

Browse Popular Code Answers by Language