Home  >  Article  >  Backend Development  >  PHP determines how many data types an array has

PHP determines how many data types an array has

PHPz
PHPzOriginal
2023-04-18 09:05:26474browse

PHP is a programming language widely used in the field of Web development. It provides a rich function library and language features, including array operations and other functions. In PHP, multiple methods can be used to determine how many data types an array has.

1. Use the count function

The count function is a built-in function in PHP. Using this function in an array can be used to get the number of elements in the array, and then determine how many elements the array has. type of data. The following is a simple code example:

<?php  
$array = array(1,2,&#39;hello&#39;,3.14,true,array(&#39;a&#39;,&#39;b&#39;,&#39;c&#39;));  
$length = count($array);  
echo &#39;数组中元素的个数为:&#39;.$length.&#39;,类型个数为:&#39;.count(array_unique(array_map(&#39;gettype&#39;,$array)));  
?>

In the above code, we define an array containing multiple data types, use the count function in PHP to obtain the number of array elements, and use the array_map function to obtain the number of elements in the array For the data type of each element, use the array_unique function to remove duplicate element types, and finally get the total number of data types in the array.

2. Use foreach loop

In addition to the count function, we can also use the foreach loop to traverse each element in the array and count the number of different data types in the array. It is very simple to implement. You can see the following code:

<?php  
$array = array(1,2,&#39;hello&#39;,3.14,true,array(&#39;a&#39;,&#39;b&#39;,&#39;c&#39;));  
$result = array();  
foreach($array as $value){  
    $value_type = gettype($value);  
    if(!isset($result[$value_type])){  
        $result[$value_type] = 1;  
    }else{  
        $result[$value_type] += 1;  
    }  
}  
echo &#39;数组中元素的个数为:&#39;.count($array).&#39;,数据类型的个数为:&#39;.count($result);  
?>

In the above code, we define an array $result to record the type of each element and the number of occurrences during the traversal process, by traversing and counting the different data in the array The number of types ultimately results in the total number of different data types in the array.

3. Use the array_column function

In addition to the previous two methods, we can also use the array_column function to count the number of different data types in the array. The following is a code example:

<?php  
$array = array(1,2,&#39;hello&#39;,3.14,true,array(&#39;a&#39;,&#39;b&#39;,&#39;c&#39;));  
$type_array = array_map(function($value){ return gettype($value); }, $array);  
$result = count(array_unique(array_column(array_combine($type_array, $type_array), 0)));  
echo &#39;数组中元素的个数为:&#39;.count($array).&#39;,数据类型的个数为:&#39;.$result;  
?>

In the above code, we use the array_combine and array_column functions to convert the array into a two-dimensional array similar to key-value pairs. In this array, the subscript represents the element type. , the corresponding value represents the number of times this type appears in the array, and finally counting the number of key-value pairs present in it, the total number of different data types in the array can be obtained.

Summary

In this article, we introduced three methods to determine the number of different data types in an array. These methods are commonly used when operating arrays, and are often used in operations such as filtering and statistics. In actual use, developers can choose different methods according to actual needs to achieve better results.

The above is the detailed content of PHP determines how many data types an array has. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn