Below is the multidimensional array with define function. How would I echo so that the output value would show 5 from array 'a' => array 'apple'?
I tried echo Hello[0][2], but it doesn't show anything in the output.
define('Hello',
array(
'a' => array(
'apple' => array(1,3,5),
'orange' => array(543,345,345345),
'grapes' => array(64,576,353)
),
'b' => array(
'apple' => array(1,3,5),
'orange' => array(523,342,34645),
'grapes' => array(66,76,33)
)
)
);