Answers for "php if string contains substring in array"

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
0

Check if a String Contains a Substring in PHP

phpCopy<?php
$mystring = "This is a php program.";
$search = "a";
if(preg_match("/{$search}/i", $mystring)) {
    echo "True"; } else {
    echo("False");
}
?>
Posted by: Guest on April-23-2021

Code answers related to "php if string contains substring in array"

Browse Popular Code Answers by Language