PHP Check If Array Is Multidimensional or Not
In this post we will give you information about PHP Check If Array Is Multidimensional or Not. Hear we will give you detail about PHP Check If Array Is Multidimensional or NotAnd how to use it also give you demo for it if it is necessary.
In this tute, we will discuss check if array is multidimensional or not in php. This post will give you simple example of php determine if array is multidimensional. We will look at example of php check array is multidimensional. i would like to share with you how to check if array is multidimensional php. Here, Creating a basic example of check if array is multidimensional php example.
Here, i will give you very simple example of how to check if array is multidimensional or not in php. sometime we need to check given array is a singledimensional or multidimensional in php, so basically we can write code on according to type of that array.
In this exampl we will create isMultiArray() with array argument. we have to pass array as argument and fuinction will check if array if multidimensional using rsort(), isset() and is_array() php function.
So, here bellow simple example of checking array is multidimensional or not in php, let’s see:
Example:
<?php
$mySingleArray = [1, 2, 3, 4, 5];
$myMultiArray = [
["id"=>1, "name"=>"Hardik"],
["id"=>2, "name"=>"Paresh"],
["id"=>3, "name"=>"Naresh"],
];
var_dump(isMultiArray($mySingleArray));
var_dump(isMultiArray($myMultiArray));
function isMultiArray($arr) {
rsort($arr);
return isset($arr[0]) && is_array($arr[0]);
}
?>
Output:
bool(false)
bool(true)
I hope it can help you…
Hope this code and post will helped you for implement PHP Check If Array Is Multidimensional or Not. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs