In this tutorial, you shall learn how to create an Associative array in PHP using array() function, with the help of example programs.
PHP – Create Associative Array
To create an Associative array in PHP, use array() function with the comma separated key-value pairs passed as arguments to the function.
Syntax
The syntax to create an associative array using array() function is
</>
Copy
$myarray = array(key=>value, key=>value, key=>value)
In the above code snippet, array() function returns an associative array.
Example
Let us write a PHP program, where we shall create an associative array $arr
using array() function.
PHP Program
</>
Copy
<?php
$arr = ["apple"=>52, "banana"=>84, "cherry"=>12];
print_r($arr);
?>
Output
![PHP - Create Associative Array](https://www.tutorialkart.com/wp-content/uploads/2023/02/php-create-associative-array-1.png)
Conclusion
In this PHP Tutorial, we have learned how to create an Associate array using array() function.