PHP - Arrays
What will this code output?
$data = [
'x' => [10, 20],
'y' => [30, 40]
];
echo $data['y'][1];
$data = [
'x' => [10, 20],
'y' => [30, 40]
];
echo $data['y'][1];
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions