fwrite_basic.phpt 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416
  1. --TEST--
  2. Test fwrite() function : basic functionality
  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. // include the file.inc for Function: function delete_file($filename)
  12. include ("file.inc");
  13. echo "*** Testing fwrite() basic operations ***\n";
  14. /*
  15. test fwrite with file opened in mode : w,wb,wt,w+,w+b,w+t
  16. File containing data of type, numeric, text, text_with_new_line, alphanumeric
  17. */
  18. $file_modes = array( "w", "wb", "wt", "w+", "w+b", "w+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 data of type ". $file_content_type ." --\n";
  22. $filename = __DIR__."/fwrite_basic.tmp"; // this is name of the file
  23. for($inner_loop_counter = 0;
  24. $inner_loop_counter < count($file_modes);
  25. $inner_loop_counter++) {
  26. echo "-- File opened in mode : " . $file_modes[$inner_loop_counter]. " --\n";
  27. /* open the file using $files_modes and perform fwrite() on it */
  28. $file_handle = fopen($filename, $file_modes[$inner_loop_counter]);
  29. if (!$file_handle) {
  30. echo "Error: failed to fopen() file: $filename!";
  31. exit();
  32. }
  33. $data_to_be_written="";
  34. fill_buffer($data_to_be_written, $file_content_type, 1024); //get the data of size 1024
  35. /* Write the data in to the file, verify the write by checking file pointer position,
  36. eof position, and data. */
  37. // writing 100 bytes
  38. var_dump( ftell($file_handle) ); // Expecting 0
  39. var_dump( fwrite($file_handle, $data_to_be_written, 100)); //int(100)
  40. var_dump( feof($file_handle) ); // expected : false
  41. var_dump( ftell($file_handle) ); //expected: 100
  42. // trying to write more than the available data, available 1024 bytes but trying 2048
  43. var_dump( fwrite($file_handle, $data_to_be_written, 2048)); //int(1024)
  44. var_dump( feof($file_handle) ); // expected : false
  45. var_dump( ftell($file_handle) ); // expected: 1124
  46. // fwrite() without length parameter
  47. var_dump( fwrite($file_handle, $data_to_be_written)); //int(1024)
  48. var_dump( ftell($file_handle) ); // expected: 2148
  49. var_dump( feof($file_handle) ); // expected: false
  50. // close the file, get the size and content of the file.
  51. var_dump( fclose($file_handle) ); //expected : true
  52. clearstatcache();//clears file status cache
  53. var_dump( filesize($filename) ); // expected: 2148
  54. var_dump(md5(file_get_contents($filename))); // hash the output
  55. } // end of inner for loop
  56. // delete the file created : fwrite_basic.tmp
  57. delete_file($filename);
  58. } // end of outer foreach loop
  59. echo "Done\n";
  60. ?>
  61. --EXPECT--
  62. *** Testing fwrite() basic operations ***
  63. -- Testing fwrite() with file having data of type numeric --
  64. -- File opened in mode : w --
  65. int(0)
  66. int(100)
  67. bool(false)
  68. int(100)
  69. int(1024)
  70. bool(false)
  71. int(1124)
  72. int(1024)
  73. int(2148)
  74. bool(false)
  75. bool(true)
  76. int(2148)
  77. string(32) "04db34906fe2c56dcfbd649b7d916974"
  78. -- File opened in mode : wb --
  79. int(0)
  80. int(100)
  81. bool(false)
  82. int(100)
  83. int(1024)
  84. bool(false)
  85. int(1124)
  86. int(1024)
  87. int(2148)
  88. bool(false)
  89. bool(true)
  90. int(2148)
  91. string(32) "04db34906fe2c56dcfbd649b7d916974"
  92. -- File opened in mode : wt --
  93. int(0)
  94. int(100)
  95. bool(false)
  96. int(100)
  97. int(1024)
  98. bool(false)
  99. int(1124)
  100. int(1024)
  101. int(2148)
  102. bool(false)
  103. bool(true)
  104. int(2148)
  105. string(32) "04db34906fe2c56dcfbd649b7d916974"
  106. -- File opened in mode : w+ --
  107. int(0)
  108. int(100)
  109. bool(false)
  110. int(100)
  111. int(1024)
  112. bool(false)
  113. int(1124)
  114. int(1024)
  115. int(2148)
  116. bool(false)
  117. bool(true)
  118. int(2148)
  119. string(32) "04db34906fe2c56dcfbd649b7d916974"
  120. -- File opened in mode : w+b --
  121. int(0)
  122. int(100)
  123. bool(false)
  124. int(100)
  125. int(1024)
  126. bool(false)
  127. int(1124)
  128. int(1024)
  129. int(2148)
  130. bool(false)
  131. bool(true)
  132. int(2148)
  133. string(32) "04db34906fe2c56dcfbd649b7d916974"
  134. -- File opened in mode : w+t --
  135. int(0)
  136. int(100)
  137. bool(false)
  138. int(100)
  139. int(1024)
  140. bool(false)
  141. int(1124)
  142. int(1024)
  143. int(2148)
  144. bool(false)
  145. bool(true)
  146. int(2148)
  147. string(32) "04db34906fe2c56dcfbd649b7d916974"
  148. -- Testing fwrite() with file having data of type text --
  149. -- File opened in mode : w --
  150. int(0)
  151. int(100)
  152. bool(false)
  153. int(100)
  154. int(1024)
  155. bool(false)
  156. int(1124)
  157. int(1024)
  158. int(2148)
  159. bool(false)
  160. bool(true)
  161. int(2148)
  162. string(32) "9c08ac77b7a93a84dd0b055900165e84"
  163. -- File opened in mode : wb --
  164. int(0)
  165. int(100)
  166. bool(false)
  167. int(100)
  168. int(1024)
  169. bool(false)
  170. int(1124)
  171. int(1024)
  172. int(2148)
  173. bool(false)
  174. bool(true)
  175. int(2148)
  176. string(32) "9c08ac77b7a93a84dd0b055900165e84"
  177. -- File opened in mode : wt --
  178. int(0)
  179. int(100)
  180. bool(false)
  181. int(100)
  182. int(1024)
  183. bool(false)
  184. int(1124)
  185. int(1024)
  186. int(2148)
  187. bool(false)
  188. bool(true)
  189. int(2148)
  190. string(32) "9c08ac77b7a93a84dd0b055900165e84"
  191. -- File opened in mode : w+ --
  192. int(0)
  193. int(100)
  194. bool(false)
  195. int(100)
  196. int(1024)
  197. bool(false)
  198. int(1124)
  199. int(1024)
  200. int(2148)
  201. bool(false)
  202. bool(true)
  203. int(2148)
  204. string(32) "9c08ac77b7a93a84dd0b055900165e84"
  205. -- File opened in mode : w+b --
  206. int(0)
  207. int(100)
  208. bool(false)
  209. int(100)
  210. int(1024)
  211. bool(false)
  212. int(1124)
  213. int(1024)
  214. int(2148)
  215. bool(false)
  216. bool(true)
  217. int(2148)
  218. string(32) "9c08ac77b7a93a84dd0b055900165e84"
  219. -- File opened in mode : w+t --
  220. int(0)
  221. int(100)
  222. bool(false)
  223. int(100)
  224. int(1024)
  225. bool(false)
  226. int(1124)
  227. int(1024)
  228. int(2148)
  229. bool(false)
  230. bool(true)
  231. int(2148)
  232. string(32) "9c08ac77b7a93a84dd0b055900165e84"
  233. -- Testing fwrite() with file having data of type text_with_new_line --
  234. -- File opened in mode : w --
  235. int(0)
  236. int(100)
  237. bool(false)
  238. int(100)
  239. int(1024)
  240. bool(false)
  241. int(1124)
  242. int(1024)
  243. int(2148)
  244. bool(false)
  245. bool(true)
  246. int(2148)
  247. string(32) "56a1963cc292d7f8245219116d9eca40"
  248. -- File opened in mode : wb --
  249. int(0)
  250. int(100)
  251. bool(false)
  252. int(100)
  253. int(1024)
  254. bool(false)
  255. int(1124)
  256. int(1024)
  257. int(2148)
  258. bool(false)
  259. bool(true)
  260. int(2148)
  261. string(32) "56a1963cc292d7f8245219116d9eca40"
  262. -- File opened in mode : wt --
  263. int(0)
  264. int(100)
  265. bool(false)
  266. int(100)
  267. int(1024)
  268. bool(false)
  269. int(1124)
  270. int(1024)
  271. int(2148)
  272. bool(false)
  273. bool(true)
  274. int(2148)
  275. string(32) "56a1963cc292d7f8245219116d9eca40"
  276. -- File opened in mode : w+ --
  277. int(0)
  278. int(100)
  279. bool(false)
  280. int(100)
  281. int(1024)
  282. bool(false)
  283. int(1124)
  284. int(1024)
  285. int(2148)
  286. bool(false)
  287. bool(true)
  288. int(2148)
  289. string(32) "56a1963cc292d7f8245219116d9eca40"
  290. -- File opened in mode : w+b --
  291. int(0)
  292. int(100)
  293. bool(false)
  294. int(100)
  295. int(1024)
  296. bool(false)
  297. int(1124)
  298. int(1024)
  299. int(2148)
  300. bool(false)
  301. bool(true)
  302. int(2148)
  303. string(32) "56a1963cc292d7f8245219116d9eca40"
  304. -- File opened in mode : w+t --
  305. int(0)
  306. int(100)
  307. bool(false)
  308. int(100)
  309. int(1024)
  310. bool(false)
  311. int(1124)
  312. int(1024)
  313. int(2148)
  314. bool(false)
  315. bool(true)
  316. int(2148)
  317. string(32) "56a1963cc292d7f8245219116d9eca40"
  318. -- Testing fwrite() with file having data of type alphanumeric --
  319. -- File opened in mode : w --
  320. int(0)
  321. int(100)
  322. bool(false)
  323. int(100)
  324. int(1024)
  325. bool(false)
  326. int(1124)
  327. int(1024)
  328. int(2148)
  329. bool(false)
  330. bool(true)
  331. int(2148)
  332. string(32) "719e3329c19218c12d232f2ee81e100f"
  333. -- File opened in mode : wb --
  334. int(0)
  335. int(100)
  336. bool(false)
  337. int(100)
  338. int(1024)
  339. bool(false)
  340. int(1124)
  341. int(1024)
  342. int(2148)
  343. bool(false)
  344. bool(true)
  345. int(2148)
  346. string(32) "719e3329c19218c12d232f2ee81e100f"
  347. -- File opened in mode : wt --
  348. int(0)
  349. int(100)
  350. bool(false)
  351. int(100)
  352. int(1024)
  353. bool(false)
  354. int(1124)
  355. int(1024)
  356. int(2148)
  357. bool(false)
  358. bool(true)
  359. int(2148)
  360. string(32) "719e3329c19218c12d232f2ee81e100f"
  361. -- File opened in mode : w+ --
  362. int(0)
  363. int(100)
  364. bool(false)
  365. int(100)
  366. int(1024)
  367. bool(false)
  368. int(1124)
  369. int(1024)
  370. int(2148)
  371. bool(false)
  372. bool(true)
  373. int(2148)
  374. string(32) "719e3329c19218c12d232f2ee81e100f"
  375. -- File opened in mode : w+b --
  376. int(0)
  377. int(100)
  378. bool(false)
  379. int(100)
  380. int(1024)
  381. bool(false)
  382. int(1124)
  383. int(1024)
  384. int(2148)
  385. bool(false)
  386. bool(true)
  387. int(2148)
  388. string(32) "719e3329c19218c12d232f2ee81e100f"
  389. -- File opened in mode : w+t --
  390. int(0)
  391. int(100)
  392. bool(false)
  393. int(100)
  394. int(1024)
  395. bool(false)
  396. int(1124)
  397. int(1024)
  398. int(2148)
  399. bool(false)
  400. bool(true)
  401. int(2148)
  402. string(32) "719e3329c19218c12d232f2ee81e100f"
  403. Done