$a= array("Three", "two", "Four", "five","ten");
$b="Hello Welcome to plus2net ";
if(is_array($a)){ // Change this variable to $b
echo " This is an array ";
}else{
echo " This is not an array ";
}
The above code will return This is an array if $a is checked using if condition.
<?Php
$str="Learn web programming at plus2net.com";
echo is_array($str) ? 'Yes, Array' : 'not an Array';
?>
Output is
not an Array
By using split function we can break a sting and create an array. Here is the modified code.
<?Php
$str=split(" ","Learn web programming at plus2net.com");
echo is_array($str) ? 'Yes, Array' : 'not an Array';
?>
Output is
Yes, Array
<?php
$array = ['name' => 'John', 'age' => 25];
echo is_array($array) ? 'Yes, Array' : 'Not an Array'; // Output: Yes, Array
?>
<?php
$nestedArray = [1, [2, 3], 4];
echo is_array($nestedArray[1]) ? 'Nested is Array' : 'Nested is not an Array'; // Output: Nested is Array
?>
<?php
$var = 'Hello';
echo is_array($var) ? 'Array' : 'Not an Array'; // Output: Not an Array
?>
<?php
$input = [10, 20, 30];
if (is_array($input)) {
echo "The input is an array!";
} else {
echo "The input is not an array!";
}
?>
Author
🎥 Join me live on YouTubePassionate about coding and teaching, I publish practical tutorials on PHP, Python, JavaScript, SQL, and web development. My goal is to make learning simple, engaging, and project‑oriented with real examples and source code.