/hphp/test/slow/array_functions/528.php
http://github.com/facebook/hiphop-php · PHP · 9 lines · 7 code · 2 blank · 0 comment · 0 complexity · ea129b0befaafa384a84a9c1574fd5d1 MD5 · raw file
- <?hh
- <<__EntryPoint>>
- function main_528() {
- $input = darray["a" => "green", 0 => "red", "b" => "green", 1 => "blue", 2 => "red"];
- $result = array_unique($input);
- print_r($result);
- }