Answers for "search if string is included in an other sttring pgp"

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 "search if string is included in an other sttring pgp"

Browse Popular Code Answers by Language