007_variation1.phpt 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. --TEST--
  2. Test fopen and fclose() functions - usage variations - "r" mode
  3. --FILE--
  4. <?php
  5. /*
  6. fopen() function:
  7. Prototype: resource fopen(string $filename, string $mode
  8. [, bool $use_include_path [, resource $context]] );
  9. Description: Opens file or URL.
  10. */
  11. /*
  12. fclose() function:
  13. Prototype: bool fclose ( resource $handle );
  14. Description: Closes an open file pointer
  15. */
  16. /* Test fopen() and fclose(): Opening the file in "r" mode,
  17. checking for the file creation, write & read operations,
  18. checking for the file pointer position,
  19. and fclose function
  20. */
  21. $file_path = dirname(__FILE__);
  22. require($file_path."/file.inc");
  23. create_files($file_path, 1, "text_with_new_line", 0755, 20, "w", "007_variation", 1, "bytes");
  24. $file = $file_path."/007_variation1.tmp";
  25. $string = "abcdefghij\nmnopqrst\tuvwxyz\n0123456789";
  26. echo "*** Test fopen() & fclose() functions: with 'r' mode ***\n";
  27. $file_handle = fopen($file, "r"); //opening the file in "r" mode
  28. var_dump($file_handle); //Check for the content of handle
  29. var_dump( get_resource_type($file_handle) ); //Check for the type of resource
  30. var_dump( ftell($file_handle) ); //Initial position of file pointer
  31. var_dump( fread($file_handle, 100) ); //Check for read operation
  32. var_dump( fwrite($file_handle, $string) ); //Check for write operation; fails; expected: 0 bytes
  33. var_dump( fclose($file_handle) ); //Check for close operation on the file handle
  34. var_dump( get_resource_type($file_handle) ); //Check whether resource is lost after close operation
  35. echo "*** Done ***\n";
  36. --CLEAN--
  37. <?php
  38. unlink(dirname(__FILE__)."/007_variation1.tmp");
  39. ?>
  40. --EXPECTF--
  41. *** Test fopen() & fclose() functions: with 'r' mode ***
  42. resource(%d) of type (stream)
  43. string(6) "stream"
  44. int(0)
  45. string(20) "line
  46. line of text
  47. li"
  48. int(0)
  49. bool(true)
  50. string(7) "Unknown"
  51. *** Done ***