What are the types of arrays in php

(*-*)浩
Release: 2023-02-23 18:36:01
Original
6229 people have browsed it

What are the types of arrays in php

There are four types of arrays in php

Numeric arrays:Arrays with numeric ID keys

Associative array:An array with specified keys, each key is associated with a value

Multidimensional array:An array containing one or more

Ordinary array:Usually the entire array cannot be echoed directly (recommended learning:PHP programming from entry to proficiency)


        
Copy after login

key Value array,is preceded by the key and followed by the value

$tu = array(‘sex’=>‘男’,‘height’=>‘170cm’,‘heavy’=>‘125’,‘name’=>‘吾志高’); var_dump($tu); //遍历数组 foreach($tu as $key =>$value) { var_dump($key.'-------'.$value); //输出键 var_dump($value); //输出值 }
Copy after login

Output status

array (size=4) ‘sex’ => string ‘男’ (length=3) ‘height’ => string ‘170cm’ (length=5) ‘heavy’ => string ‘125’ (length=3) ‘name’ => string ‘吾志高’ (length=9) D:\wamp64\www\base\array.php:18:string ‘sex-------男’ (length=13) D:\wamp64\www\base\array.php:19:string ‘男’ (length=3) D:\wamp64\www\base\array.php:18:string ‘height-------165cm’ (length=18) D:\wamp64\www\base\array.php:19:string ‘170cm’ (length=5) D:\wamp64\www\base\array.php:18:string ‘heavy-------125’ (length=15) D:\wamp64\www\base\array.php:19:string ‘125’ (length=3) D:\wamp64\www\base\array.php:18:string ‘name-------吾志高’ (lengt=20) D:\wamp64\www\base\array.php:19:string ‘吾志高’ (length=9)
Copy after login

Associative array, note that between the two arrays Comma, semicolon at the end of the array

$p = [ $tu = array(‘sex’=>‘男’,‘height’=>‘170cm’,‘heavy’=>‘125’,‘name’=>‘吾志高’), $tu = array(‘sex’=>‘男’,‘height’=>‘170cm’,‘heavy’=>‘125’,‘name’=>‘吾志高’), $tu = array(‘sex’=>‘男’,‘height’=>‘170cm’,‘heavy’=>‘125’,‘name’=>‘吾志高’), $tu = array(‘sex’=>‘男’,‘height’=>‘170cm’,‘heavy’=>‘125’,‘name’=>‘吾志高’), $tu = array(‘sex’=>‘男’,‘height’=>‘170cm’,‘heavy’=>‘125’,‘name’=>‘吾志高’), ]; var_dump($p); var_dump($p[0]['sex']); //提取数组中的元素 //不能是var_dump($p[0][1]);
Copy after login

The above is the detailed content of What are the types of arrays in php. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
source:php.cn
Statement of this Website
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!