Skip to main content
Search
Search This Blog
Priya Digital World
Share
Get link
Facebook
X
Pinterest
Email
Other Apps
July 20, 2021
Associative Array in PHP
<?php
// Associative array
$favCol
=
array
(
"shubham"
=>
"red"
,
"ram"
=>
"green"
,
"vatsal"
=>
"blue"
);
foreach
($favCol
as
$key
=>
$value) {
echo
"The favorite color of
$key
is
$value
<br>"
;
}
?
>
Comments
Popular Posts
August 04, 2023
Falcon Integration in IMPS payment service
July 25, 2020
Python Data Structure Assignment_7.2 || Week 3
Comments
Post a Comment