PageRenderTime 43ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/hphp/test/slow/ext_file/fgets.php

http://github.com/facebook/hiphop-php
PHP | 18 lines | 13 code | 5 blank | 0 comment | 0 complexity | 442d0fd69a405e2c030bb17ef7b353eb 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_fgets() {
  4. $tempfile = tempnam('/tmp', 'vmextfiletest');
  5. $f = fopen($tempfile, 'w');
  6. fputs($f, "testing\nfgets\n\n");
  7. fclose($f);
  8. $f = fopen($tempfile, 'r');
  9. var_dump(fgets($f));
  10. var_dump(fgets($f));
  11. var_dump(fgets($f));
  12. unlink($tempfile);
  13. }