PHP - Array Functions
What is the output of the following PHP code?
$arr = ['x' => 'apple', 'y' => 'banana', 'z' => 'apple']; $result = array_unique($arr); print_r($result);
