Answers for "check if string contains a symbol 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 "check if string contains a symbol php"

Browse Popular Code Answers by Language