PageRenderTime 44ms CodeModel.GetById 18ms RepoModel.GetById 1ms app.codeStats 0ms

/hphp/test/zend/good/tests/lang/func_get_args.001.php

http://github.com/facebook/hiphop-php
PHP | 9 lines | 7 code | 2 blank | 0 comment | 0 complexity | c01f2c89b12b643e071eddcc121a3faa 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. <?php
  2. function foo()
  3. {
  4. var_dump(func_get_args());
  5. }
  6. foo();
  7. ?>