PHP - Array Functions
What will be the output of this PHP code?
$arr = ['a' => 0, 'b' => 1, 'c' => false, 'd' => true]; $result = array_filter($arr); print_r($result);
