Consider:

$a="How are you?";

if ($a contains 'are')
    echo 'true';

Suppose I have the code above, what is the correct way to write the statement if ($a contains 'are')?

3
36

Leave a Reply

Your email address will not be published. Required fields are marked *