Answers for "string has "\" in it php"

PHP
2

php string contains

$string = 'The lazy fox jumped over the fence';

if (str_contains($string, 'lazy')) {
    echo "The string 'lazy' was found in the string\n";
}
Posted by: Guest on July-23-2021
0

contains php

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

Browse Popular Code Answers by Language