Answers for "if a letter exists in the string php"

PHP
3

if text contains word then in php

if (strpos($haystack,$needle) !== false) {
    echo "$haystack contains $needle";
}
Posted by: Guest on July-16-2020

Code answers related to "if a letter exists in the string php"

Browse Popular Code Answers by Language