fwrite_variation4.phpt 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. --TEST--
  2. Test fwrite() function : usage variations - x, xb, xt, x+, x+b & x+t modes
  3. --SKIPIF--
  4. <?php
  5. if( substr(PHP_OS, 0, 3) == 'WIN' ) {
  6. die('skip...Not valid for Windows');
  7. }
  8. ?>
  9. --FILE--
  10. <?php
  11. echo "*** Testing fwrite() various operations ***\n";
  12. // include the file.inc for Function: function delete_file($filename)
  13. include ("file.inc");
  14. /*
  15. Test fwrite with file opened in mode : x, xb, xt, x+, x+b, x+t
  16. File having content of type numeric, text,text_with_new_line & alphanumeric
  17. */
  18. $file_modes = array("x","xb","xt","x+","x+b","x+t");
  19. $file_content_types = array("numeric","text","text_with_new_line","alphanumeric");
  20. foreach($file_content_types as $file_content_type) {
  21. echo "\n-- Testing fwrite() with file having content of type ". $file_content_type ." --\n";
  22. /* open the file using $files_modes and perform fwrite() on it */
  23. foreach($file_modes as $file_mode) {
  24. echo "-- Opening file in $file_mode --\n";
  25. $filename = __DIR__."/fwrite_variation4.tmp"; // this is name of the file
  26. $file_handle = fopen($filename, $file_mode);
  27. if(!$file_handle) {
  28. echo "Error: failed to fopen() file: $filename!";
  29. exit();
  30. }
  31. $data_to_be_written="";
  32. fill_buffer($data_to_be_written,$file_content_type,1024); //get the data of size 1024
  33. /* Write the data into the file, verify it by checking the file pointer position, eof position,
  34. filesize & by displaying the content */
  35. // write data to the file
  36. var_dump( ftell($file_handle) );
  37. var_dump( fwrite($file_handle,$data_to_be_written,400));
  38. var_dump( ftell($file_handle) );
  39. var_dump( feof($file_handle) ); // expected: true
  40. //check the filesize and content
  41. // close the file, get the size and content of the file.
  42. var_dump( fclose($file_handle) );
  43. clearstatcache();//clears file status cache
  44. var_dump( filesize($filename) );
  45. var_dump(md5(file_get_contents($filename)));
  46. // delete the file created
  47. delete_file($filename); // delete file with name fwrite_variation4.tmp
  48. } // end of inner foreach loop
  49. } // end of outer foreach loop
  50. echo "Done\n";
  51. ?>
  52. --EXPECT--
  53. *** Testing fwrite() various operations ***
  54. -- Testing fwrite() with file having content of type numeric --
  55. -- Opening file in x --
  56. int(0)
  57. int(400)
  58. int(400)
  59. bool(false)
  60. bool(true)
  61. int(400)
  62. string(32) "f255efe87ebdf755e515868cea9ad24b"
  63. -- Opening file in xb --
  64. int(0)
  65. int(400)
  66. int(400)
  67. bool(false)
  68. bool(true)
  69. int(400)
  70. string(32) "f255efe87ebdf755e515868cea9ad24b"
  71. -- Opening file in xt --
  72. int(0)
  73. int(400)
  74. int(400)
  75. bool(false)
  76. bool(true)
  77. int(400)
  78. string(32) "f255efe87ebdf755e515868cea9ad24b"
  79. -- Opening file in x+ --
  80. int(0)
  81. int(400)
  82. int(400)
  83. bool(false)
  84. bool(true)
  85. int(400)
  86. string(32) "f255efe87ebdf755e515868cea9ad24b"
  87. -- Opening file in x+b --
  88. int(0)
  89. int(400)
  90. int(400)
  91. bool(false)
  92. bool(true)
  93. int(400)
  94. string(32) "f255efe87ebdf755e515868cea9ad24b"
  95. -- Opening file in x+t --
  96. int(0)
  97. int(400)
  98. int(400)
  99. bool(false)
  100. bool(true)
  101. int(400)
  102. string(32) "f255efe87ebdf755e515868cea9ad24b"
  103. -- Testing fwrite() with file having content of type text --
  104. -- Opening file in x --
  105. int(0)
  106. int(400)
  107. int(400)
  108. bool(false)
  109. bool(true)
  110. int(400)
  111. string(32) "c2244282eeca7c2d32d0dacf21e19432"
  112. -- Opening file in xb --
  113. int(0)
  114. int(400)
  115. int(400)
  116. bool(false)
  117. bool(true)
  118. int(400)
  119. string(32) "c2244282eeca7c2d32d0dacf21e19432"
  120. -- Opening file in xt --
  121. int(0)
  122. int(400)
  123. int(400)
  124. bool(false)
  125. bool(true)
  126. int(400)
  127. string(32) "c2244282eeca7c2d32d0dacf21e19432"
  128. -- Opening file in x+ --
  129. int(0)
  130. int(400)
  131. int(400)
  132. bool(false)
  133. bool(true)
  134. int(400)
  135. string(32) "c2244282eeca7c2d32d0dacf21e19432"
  136. -- Opening file in x+b --
  137. int(0)
  138. int(400)
  139. int(400)
  140. bool(false)
  141. bool(true)
  142. int(400)
  143. string(32) "c2244282eeca7c2d32d0dacf21e19432"
  144. -- Opening file in x+t --
  145. int(0)
  146. int(400)
  147. int(400)
  148. bool(false)
  149. bool(true)
  150. int(400)
  151. string(32) "c2244282eeca7c2d32d0dacf21e19432"
  152. -- Testing fwrite() with file having content of type text_with_new_line --
  153. -- Opening file in x --
  154. int(0)
  155. int(400)
  156. int(400)
  157. bool(false)
  158. bool(true)
  159. int(400)
  160. string(32) "fa6c79b925c2fc754b9d063c6de1d8df"
  161. -- Opening file in xb --
  162. int(0)
  163. int(400)
  164. int(400)
  165. bool(false)
  166. bool(true)
  167. int(400)
  168. string(32) "fa6c79b925c2fc754b9d063c6de1d8df"
  169. -- Opening file in xt --
  170. int(0)
  171. int(400)
  172. int(400)
  173. bool(false)
  174. bool(true)
  175. int(400)
  176. string(32) "fa6c79b925c2fc754b9d063c6de1d8df"
  177. -- Opening file in x+ --
  178. int(0)
  179. int(400)
  180. int(400)
  181. bool(false)
  182. bool(true)
  183. int(400)
  184. string(32) "fa6c79b925c2fc754b9d063c6de1d8df"
  185. -- Opening file in x+b --
  186. int(0)
  187. int(400)
  188. int(400)
  189. bool(false)
  190. bool(true)
  191. int(400)
  192. string(32) "fa6c79b925c2fc754b9d063c6de1d8df"
  193. -- Opening file in x+t --
  194. int(0)
  195. int(400)
  196. int(400)
  197. bool(false)
  198. bool(true)
  199. int(400)
  200. string(32) "fa6c79b925c2fc754b9d063c6de1d8df"
  201. -- Testing fwrite() with file having content of type alphanumeric --
  202. -- Opening file in x --
  203. int(0)
  204. int(400)
  205. int(400)
  206. bool(false)
  207. bool(true)
  208. int(400)
  209. string(32) "b2a123e1d84e6a03c8520aff7689219e"
  210. -- Opening file in xb --
  211. int(0)
  212. int(400)
  213. int(400)
  214. bool(false)
  215. bool(true)
  216. int(400)
  217. string(32) "b2a123e1d84e6a03c8520aff7689219e"
  218. -- Opening file in xt --
  219. int(0)
  220. int(400)
  221. int(400)
  222. bool(false)
  223. bool(true)
  224. int(400)
  225. string(32) "b2a123e1d84e6a03c8520aff7689219e"
  226. -- Opening file in x+ --
  227. int(0)
  228. int(400)
  229. int(400)
  230. bool(false)
  231. bool(true)
  232. int(400)
  233. string(32) "b2a123e1d84e6a03c8520aff7689219e"
  234. -- Opening file in x+b --
  235. int(0)
  236. int(400)
  237. int(400)
  238. bool(false)
  239. bool(true)
  240. int(400)
  241. string(32) "b2a123e1d84e6a03c8520aff7689219e"
  242. -- Opening file in x+t --
  243. int(0)
  244. int(400)
  245. int(400)
  246. bool(false)
  247. bool(true)
  248. int(400)
  249. string(32) "b2a123e1d84e6a03c8520aff7689219e"
  250. Done