Answers for "php how to check if string has characters"

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 "php how to check if string has characters"

Browse Popular Code Answers by Language