Answers for "write a program to associative arrays in php"

PHP
0

php associative array

<?php
$arr = array('fruit' => 'mango', 'vegetable' => 'tomato', 'thing' => 'bag');
echo $arr['fruit']
/*OUTPUT
mango*/
?>
Posted by: Guest on April-24-2021
0

PHP Associative Array

Array
(
    [Ahmed] => Rofy
    [Abdallah] => Oda
    [Michel] => Mic
    [Yahia] => ENG
)
Posted by: Guest on October-09-2021

Code answers related to "write a program to associative arrays in php"

Browse Popular Code Answers by Language