Answers for "check if a string is part of another php"

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
-1

check if string contains substring php 8

str_contains('STRING', 'SUB_STRING');
Posted by: Guest on December-06-2020

Code answers related to "check if a string is part of another php"

Browse Popular Code Answers by Language