/hphp/test/slow/array_functions/527.php

http://github.com/facebook/hiphop-php · PHP · 10 lines · 6 code · 3 blank · 1 comment · 0 complexity · d0c3c331c0a163b11f933efbccd75ccc MD5 · raw file

  1. <?hh
  2. // disable array -> "Array" conversion notice
  3. <<__EntryPoint>>
  4. function main_527() {
  5. error_reporting(error_reporting() & ~E_NOTICE);
  6. var_dump(array_unique(varray[varray[1,2], varray[1,2], varray[3,4],]));
  7. }