Answers for "php check if the value is string"

PHP
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
0

php check if variable is string

is_string(mixed $value): bool
Posted by: Guest on September-28-2021

Code answers related to "php check if the value is string"

Browse Popular Code Answers by Language