Answers for "check if a character in string in php"

PHP
2

How do I check if a string contains a specific word php

$a = 'How are you?';

if (strpos($a, 'are') !== false) {
    echo 'true';
}
Posted by: Guest on April-28-2020

Code answers related to "check if a character in string in php"

Browse Popular Code Answers by Language