PageRenderTime 55ms CodeModel.GetById 19ms RepoModel.GetById 1ms app.codeStats 0ms

/hphp/test/slow/ext_options/ini_get.php

http://github.com/facebook/hiphop-php
PHP | 12 lines | 9 code | 3 blank | 0 comment | 0 complexity | 42dacccf2b73cfeef12da13c47a1af98 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. function ini_get_wrapper( $setting ) {
  3. return ini_get( $setting );
  4. }
  5. <<__EntryPoint>>
  6. function main_ini_get() {
  7. var_dump(ini_get_wrapper('some_non_existent_setting'));
  8. var_dump(ini_get_wrapper('some_non_existent_setting'));
  9. }