007_basic.phpt 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321
  1. --TEST--
  2. Test fopen(), fclose() & feof() functions: basic functionality
  3. --FILE--
  4. <?php
  5. echo "*** Testing basic operations of fopen() and fclose() functions ***\n";
  6. $modes = array(
  7. "w",
  8. "wb",
  9. "wt",
  10. "w+",
  11. "w+b",
  12. "w+t",
  13. "r",
  14. "rb",
  15. "rt",
  16. "r+",
  17. "r+b",
  18. "r+t",
  19. "a",
  20. "ab",
  21. "at",
  22. "a+",
  23. "a+t",
  24. "a+b"
  25. );
  26. for( $i=0; $i<count($modes); $i++ ) {
  27. echo "\n-- Iteration with mode '$modes[$i]' --\n";
  28. $filename = __DIR__."/007_basic.tmp";
  29. // check fopen()
  30. $handle = fopen($filename, $modes[$i]);
  31. var_dump($handle );
  32. var_dump( ftell($handle) );
  33. var_dump( feof($handle) );
  34. // check fclose()
  35. var_dump( fclose($handle) );
  36. var_dump( $handle );
  37. // confirm the closure, using ftell() and feof()
  38. try {
  39. var_dump( ftell($handle) );
  40. } catch (TypeError $e) {
  41. echo $e->getMessage(), "\n";
  42. }
  43. try {
  44. var_dump( feof($handle) );
  45. } catch (TypeError $e) {
  46. echo $e->getMessage(), "\n";
  47. }
  48. }
  49. // remove the temp file
  50. unlink($filename);
  51. $x_modes = array(
  52. "x",
  53. "xb",
  54. "xt",
  55. "x+",
  56. "x+b",
  57. "x+t"
  58. );
  59. for( $i=0; $i<count($x_modes); $i++ ) {
  60. echo "\n-- Iteration with mode '$x_modes[$i]' --\n";
  61. $handle = fopen($filename, $x_modes[$i]);
  62. var_dump($handle );
  63. var_dump( ftell($handle) );
  64. var_dump( feof($handle) );
  65. // check fclose()
  66. var_dump( fclose($handle) );
  67. var_dump( $handle );
  68. // confirm the closure, using ftell() and feof()
  69. try {
  70. var_dump( ftell($handle) );
  71. } catch (TypeError $e) {
  72. echo $e->getMessage(), "\n";
  73. }
  74. try {
  75. var_dump( feof($handle) );
  76. } catch (TypeError $e) {
  77. echo $e->getMessage(), "\n";
  78. }
  79. var_dump( $handle );
  80. // remove the file
  81. unlink( $filename );
  82. }
  83. echo "\n*** Done ***\n";
  84. ?>
  85. --EXPECTF--
  86. *** Testing basic operations of fopen() and fclose() functions ***
  87. -- Iteration with mode 'w' --
  88. resource(%d) of type (stream)
  89. int(0)
  90. bool(false)
  91. bool(true)
  92. resource(%d) of type (Unknown)
  93. ftell(): supplied resource is not a valid stream resource
  94. feof(): supplied resource is not a valid stream resource
  95. -- Iteration with mode 'wb' --
  96. resource(%d) of type (stream)
  97. int(0)
  98. bool(false)
  99. bool(true)
  100. resource(%d) of type (Unknown)
  101. ftell(): supplied resource is not a valid stream resource
  102. feof(): supplied resource is not a valid stream resource
  103. -- Iteration with mode 'wt' --
  104. resource(%d) of type (stream)
  105. int(0)
  106. bool(false)
  107. bool(true)
  108. resource(%d) of type (Unknown)
  109. ftell(): supplied resource is not a valid stream resource
  110. feof(): supplied resource is not a valid stream resource
  111. -- Iteration with mode 'w+' --
  112. resource(%d) of type (stream)
  113. int(0)
  114. bool(false)
  115. bool(true)
  116. resource(%d) of type (Unknown)
  117. ftell(): supplied resource is not a valid stream resource
  118. feof(): supplied resource is not a valid stream resource
  119. -- Iteration with mode 'w+b' --
  120. resource(%d) of type (stream)
  121. int(0)
  122. bool(false)
  123. bool(true)
  124. resource(%d) of type (Unknown)
  125. ftell(): supplied resource is not a valid stream resource
  126. feof(): supplied resource is not a valid stream resource
  127. -- Iteration with mode 'w+t' --
  128. resource(%d) of type (stream)
  129. int(0)
  130. bool(false)
  131. bool(true)
  132. resource(%d) of type (Unknown)
  133. ftell(): supplied resource is not a valid stream resource
  134. feof(): supplied resource is not a valid stream resource
  135. -- Iteration with mode 'r' --
  136. resource(%d) of type (stream)
  137. int(0)
  138. bool(false)
  139. bool(true)
  140. resource(%d) of type (Unknown)
  141. ftell(): supplied resource is not a valid stream resource
  142. feof(): supplied resource is not a valid stream resource
  143. -- Iteration with mode 'rb' --
  144. resource(%d) of type (stream)
  145. int(0)
  146. bool(false)
  147. bool(true)
  148. resource(%d) of type (Unknown)
  149. ftell(): supplied resource is not a valid stream resource
  150. feof(): supplied resource is not a valid stream resource
  151. -- Iteration with mode 'rt' --
  152. resource(%d) of type (stream)
  153. int(0)
  154. bool(false)
  155. bool(true)
  156. resource(%d) of type (Unknown)
  157. ftell(): supplied resource is not a valid stream resource
  158. feof(): supplied resource is not a valid stream resource
  159. -- Iteration with mode 'r+' --
  160. resource(%d) of type (stream)
  161. int(0)
  162. bool(false)
  163. bool(true)
  164. resource(%d) of type (Unknown)
  165. ftell(): supplied resource is not a valid stream resource
  166. feof(): supplied resource is not a valid stream resource
  167. -- Iteration with mode 'r+b' --
  168. resource(%d) of type (stream)
  169. int(0)
  170. bool(false)
  171. bool(true)
  172. resource(%d) of type (Unknown)
  173. ftell(): supplied resource is not a valid stream resource
  174. feof(): supplied resource is not a valid stream resource
  175. -- Iteration with mode 'r+t' --
  176. resource(%d) of type (stream)
  177. int(0)
  178. bool(false)
  179. bool(true)
  180. resource(%d) of type (Unknown)
  181. ftell(): supplied resource is not a valid stream resource
  182. feof(): supplied resource is not a valid stream resource
  183. -- Iteration with mode 'a' --
  184. resource(%d) of type (stream)
  185. int(0)
  186. bool(false)
  187. bool(true)
  188. resource(%d) of type (Unknown)
  189. ftell(): supplied resource is not a valid stream resource
  190. feof(): supplied resource is not a valid stream resource
  191. -- Iteration with mode 'ab' --
  192. resource(%d) of type (stream)
  193. int(0)
  194. bool(false)
  195. bool(true)
  196. resource(%d) of type (Unknown)
  197. ftell(): supplied resource is not a valid stream resource
  198. feof(): supplied resource is not a valid stream resource
  199. -- Iteration with mode 'at' --
  200. resource(%d) of type (stream)
  201. int(0)
  202. bool(false)
  203. bool(true)
  204. resource(%d) of type (Unknown)
  205. ftell(): supplied resource is not a valid stream resource
  206. feof(): supplied resource is not a valid stream resource
  207. -- Iteration with mode 'a+' --
  208. resource(%d) of type (stream)
  209. int(0)
  210. bool(false)
  211. bool(true)
  212. resource(%d) of type (Unknown)
  213. ftell(): supplied resource is not a valid stream resource
  214. feof(): supplied resource is not a valid stream resource
  215. -- Iteration with mode 'a+t' --
  216. resource(%d) of type (stream)
  217. int(0)
  218. bool(false)
  219. bool(true)
  220. resource(%d) of type (Unknown)
  221. ftell(): supplied resource is not a valid stream resource
  222. feof(): supplied resource is not a valid stream resource
  223. -- Iteration with mode 'a+b' --
  224. resource(%d) of type (stream)
  225. int(0)
  226. bool(false)
  227. bool(true)
  228. resource(%d) of type (Unknown)
  229. ftell(): supplied resource is not a valid stream resource
  230. feof(): supplied resource is not a valid stream resource
  231. -- Iteration with mode 'x' --
  232. resource(%d) of type (stream)
  233. int(0)
  234. bool(false)
  235. bool(true)
  236. resource(%d) of type (Unknown)
  237. ftell(): supplied resource is not a valid stream resource
  238. feof(): supplied resource is not a valid stream resource
  239. resource(%d) of type (Unknown)
  240. -- Iteration with mode 'xb' --
  241. resource(%d) of type (stream)
  242. int(0)
  243. bool(false)
  244. bool(true)
  245. resource(%d) of type (Unknown)
  246. ftell(): supplied resource is not a valid stream resource
  247. feof(): supplied resource is not a valid stream resource
  248. resource(%d) of type (Unknown)
  249. -- Iteration with mode 'xt' --
  250. resource(%d) of type (stream)
  251. int(0)
  252. bool(false)
  253. bool(true)
  254. resource(%d) of type (Unknown)
  255. ftell(): supplied resource is not a valid stream resource
  256. feof(): supplied resource is not a valid stream resource
  257. resource(%d) of type (Unknown)
  258. -- Iteration with mode 'x+' --
  259. resource(%d) of type (stream)
  260. int(0)
  261. bool(false)
  262. bool(true)
  263. resource(%d) of type (Unknown)
  264. ftell(): supplied resource is not a valid stream resource
  265. feof(): supplied resource is not a valid stream resource
  266. resource(%d) of type (Unknown)
  267. -- Iteration with mode 'x+b' --
  268. resource(%d) of type (stream)
  269. int(0)
  270. bool(false)
  271. bool(true)
  272. resource(%d) of type (Unknown)
  273. ftell(): supplied resource is not a valid stream resource
  274. feof(): supplied resource is not a valid stream resource
  275. resource(%d) of type (Unknown)
  276. -- Iteration with mode 'x+t' --
  277. resource(%d) of type (stream)
  278. int(0)
  279. bool(false)
  280. bool(true)
  281. resource(%d) of type (Unknown)
  282. ftell(): supplied resource is not a valid stream resource
  283. feof(): supplied resource is not a valid stream resource
  284. resource(%d) of type (Unknown)
  285. *** Done ***