Computer Science, asked by prembhujbal93, 7 months ago

What will be the output of the following PHP
code?
<?php
$fruits = array("mango", "apple", "pear",
"peach");
$fruits = array_flip($fruits);
echo (Sfruits[0]);
?>
Options
mango
Error
peach
O pear​

Answers

Answered by faseelaandru
1

It will show an Error because Sfruits is not provided in the context

Similar questions