PageRenderTime 45ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/samples/array_merge.php

https://github.com/hnw/php425
PHP | 6 lines | 6 code | 0 blank | 0 comment | 0 complexity | 2953f767649b3ebf8fd41285df2b360e MD5 | raw file
Possible License(s): LGPL-2.1
  1. <?php
  2. $foo = 'bar';
  3. $bar = 'baz';
  4. function foo() { return 'foo'; }
  5. var_dump(array_merge(
  6. $foo, $bar, $bar, &$foo, foo(), array_merge('hoge', 'fuga')));