PageRenderTime 26ms CodeModel.GetById 0ms RepoModel.GetById 0ms app.codeStats 0ms

/hphp/test/slow/ext_array/array_push.php

http://github.com/facebook/hiphop-php
PHP | 10 lines | 8 code | 2 blank | 0 comment | 0 complexity | 6409244000d703325263fd527b14fa43 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>>
  3. function main_array_push() {
  4. $input = varray["orange", "banana"];
  5. $size = array_push(inout $input, "apple", "raspberry");
  6. var_dump($input);
  7. var_dump($size);
  8. }