Answers for "php if some character exists in variable"

PHP
5

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 if some character exists in variable"

Browse Popular Code Answers by Language