fflush_basic.phpt 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. --TEST--
  2. Test fflush() function: basic functionality
  3. --FILE--
  4. <?php
  5. echo "*** Testing fflush(): writing to a file and reading the contents ***\n";
  6. $data = <<<EOD
  7. first line of string
  8. second line of string
  9. third line of string
  10. EOD;
  11. $file_path = __DIR__;
  12. $filename = "$file_path/fflush_basic.tmp";
  13. // opening a file
  14. $file_handle = fopen($filename, "w");
  15. if($file_handle == false)
  16. exit("Error:failed to open file $filename");
  17. if(substr(PHP_OS, 0, 3) == "WIN") {
  18. $data = str_replace("\r",'', $data);
  19. }
  20. // writing data to the file
  21. var_dump( fwrite($file_handle, $data) );
  22. var_dump( fflush($file_handle) );
  23. var_dump( readfile($filename) );
  24. echo "\n*** Testing fflush(): for return type ***\n";
  25. $return_value = fflush($file_handle);
  26. var_dump( is_bool($return_value) );
  27. fclose($file_handle);
  28. echo "\n*** Done ***";
  29. ?>
  30. --CLEAN--
  31. <?php
  32. $file_path = __DIR__;
  33. $filename = "$file_path/fflush_basic.tmp";
  34. unlink($filename);
  35. ?>
  36. --EXPECT--
  37. *** Testing fflush(): writing to a file and reading the contents ***
  38. int(63)
  39. bool(true)
  40. first line of string
  41. second line of string
  42. third line of stringint(63)
  43. *** Testing fflush(): for return type ***
  44. bool(true)
  45. *** Done ***