PageRenderTime 33ms CodeModel.GetById 8ms RepoModel.GetById 0ms app.codeStats 0ms

/hphp/test/quick/array_values.php

http://github.com/facebook/hiphop-php
PHP | 7 lines | 6 code | 1 blank | 0 comment | 0 complexity | 3cb2f7b633a242ffffd3d5a2f9c05daf MD5 | raw file
Possible License(s): LGPL-2.1, BSD-2-Clause, BSD-3-Clause, MPL-2.0-no-copyleft-exception, MIT, LGPL-2.0, Apache-2.0
  1. <?hh
  2. <<__EntryPoint>> function main(): void {
  3. $b = 'b';
  4. $a = varray[$b];
  5. var_dump(array_values($a));
  6. }