Answers for "not contains string php"

PHP
8

string contains php

$a = 'How are you?';

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

Browse Popular Code Answers by Language