Answers for "if string php"

PHP
2

php chech if string contains

$a = 'How are you?';

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

php string contains string

$str = 'Hello World!';

if (strpos($str, 'World') !== false) {
    echo 'true';
}
Posted by: Guest on February-22-2022
0

check string in php

$names = array("Maria", "Jhon", "John", 777, "Michael");

    foreach ($names as $check) {
        if(is_string($check)) {
            echo "This is a string: ". $check. "<br>";
        } else {
            echo "This is not a string: ".$check. "<br>";
        }
    }

// using foreach and is_string menthods
// If you want to check an array if it contains number or not
Posted by: Guest on October-20-2021

Browse Popular Code Answers by Language