The difference between php associative array and index array

藏色散人
Release: 2023-02-25 21:16:01
Original
5441 people have browsed it

The difference between php associative array and index array

The difference between php associative array and index array

Index array

Arrays with numbers as key names are generally called index arrays. An array whose keys are represented by strings is an associative array that will be introduced below. The keys of the index array are integers and start from 0 and so on.

Index array initialization example:

Copy after login

Running result:

Array
(
    [0] => 苹果
    [1] => 香蕉
)
Copy after login

Three assignment methods for index array:

1.array[0]='苹果';
2.$arr=array('0'=>'苹果');
3.$arr=array('苹果');
Copy after login

Example:

'苹果');  
if( isset($arr) ) {print_r($arr);}  
?>
Copy after login

You can use for and foreach to access the elements in the array, because for is easier. Here are just examples of using foreach,

$value){  
    echo '
第'.$key.'值是:'.$value; } ?>
Copy after login

Running results:

第0值是:苹果
第1值是:香蕉
第2值是:菠萝
Copy after login

Note: Here $key is the key The value $value is the element value

Associative array

In fact, the difference between associative array and index array is only in the key value. The key value of associative array is a string. And it is an artificial regulation, for example:

'橘子');  
echo $fruit['orange'];  
?>
Copy after login

The remaining initialization, assignment, and foreach usage are basically the same.

For more PHP knowledge, please visit PHP Chinese website!

The above is the detailed content of The difference between php associative array and index array. 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
Popular Tutorials
More>
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!