readfile_basic.phpt 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527
  1. --TEST--
  2. Test readfile() function: basic functionality
  3. --SKIPIF--
  4. <?php
  5. if (substr(PHP_OS, 0, 3) == 'WIN') {
  6. die('skip.. only on Linux');
  7. }
  8. ?>
  9. --FILE--
  10. <?php
  11. // common file used
  12. require(__DIR__ . '/file.inc');
  13. echo "*** Testing readfile() : basic functionality ***\n";
  14. $file_path = __DIR__;
  15. $file_prefix = "readfile_basic"; // temp files created with this prefix
  16. // the content that is filled into the temp files as created
  17. $filetypes = array("numeric", "text", "empty", "alphanumeric", "text_with_new_line");
  18. // different file modes
  19. $filemodes = array("w", "wt", "wb", "w+", "w+b", "w+t",
  20. "a", "at", "ab", "a+", "a+b", "a+t",
  21. "x", "xb", "xt", "x+", "x+b", "x+t");
  22. // create file, read the file content, delete file
  23. foreach($filetypes as $type) {
  24. echo "\n-- File filled with content type: $type --\n";
  25. foreach($filemodes as $mode) {
  26. echo "-- File opened with mode: $mode --\n";
  27. if ( strstr($mode, "x") ) {
  28. $fp = fopen($file_path."/".$file_prefix."1.tmp", $mode);
  29. fill_file($fp, $type, 100);
  30. fclose($fp);
  31. } else {
  32. // creating file in write mode
  33. create_files($file_path, 1, $type, 0755, 100, $mode, $file_prefix, 1, "byte");
  34. }
  35. $count = readfile($file_path."/".$file_prefix."1.tmp");
  36. echo "\n";
  37. var_dump($count);
  38. // delete files created
  39. delete_files($file_path, 1, $file_prefix, 1);
  40. }
  41. }
  42. echo "Done\n";
  43. ?>
  44. --EXPECT--
  45. *** Testing readfile() : basic functionality ***
  46. -- File filled with content type: numeric --
  47. -- File opened with mode: w --
  48. 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
  49. int(100)
  50. -- File opened with mode: wt --
  51. 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
  52. int(100)
  53. -- File opened with mode: wb --
  54. 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
  55. int(100)
  56. -- File opened with mode: w+ --
  57. 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
  58. int(100)
  59. -- File opened with mode: w+b --
  60. 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
  61. int(100)
  62. -- File opened with mode: w+t --
  63. 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
  64. int(100)
  65. -- File opened with mode: a --
  66. 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
  67. int(100)
  68. -- File opened with mode: at --
  69. 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
  70. int(100)
  71. -- File opened with mode: ab --
  72. 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
  73. int(100)
  74. -- File opened with mode: a+ --
  75. 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
  76. int(100)
  77. -- File opened with mode: a+b --
  78. 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
  79. int(100)
  80. -- File opened with mode: a+t --
  81. 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
  82. int(100)
  83. -- File opened with mode: x --
  84. 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
  85. int(100)
  86. -- File opened with mode: xb --
  87. 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
  88. int(100)
  89. -- File opened with mode: xt --
  90. 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
  91. int(100)
  92. -- File opened with mode: x+ --
  93. 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
  94. int(100)
  95. -- File opened with mode: x+b --
  96. 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
  97. int(100)
  98. -- File opened with mode: x+t --
  99. 2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
  100. int(100)
  101. -- File filled with content type: text --
  102. -- File opened with mode: w --
  103. text text text text text text text text text text text text text text text text text text text text
  104. int(100)
  105. -- File opened with mode: wt --
  106. text text text text text text text text text text text text text text text text text text text text
  107. int(100)
  108. -- File opened with mode: wb --
  109. text text text text text text text text text text text text text text text text text text text text
  110. int(100)
  111. -- File opened with mode: w+ --
  112. text text text text text text text text text text text text text text text text text text text text
  113. int(100)
  114. -- File opened with mode: w+b --
  115. text text text text text text text text text text text text text text text text text text text text
  116. int(100)
  117. -- File opened with mode: w+t --
  118. text text text text text text text text text text text text text text text text text text text text
  119. int(100)
  120. -- File opened with mode: a --
  121. text text text text text text text text text text text text text text text text text text text text
  122. int(100)
  123. -- File opened with mode: at --
  124. text text text text text text text text text text text text text text text text text text text text
  125. int(100)
  126. -- File opened with mode: ab --
  127. text text text text text text text text text text text text text text text text text text text text
  128. int(100)
  129. -- File opened with mode: a+ --
  130. text text text text text text text text text text text text text text text text text text text text
  131. int(100)
  132. -- File opened with mode: a+b --
  133. text text text text text text text text text text text text text text text text text text text text
  134. int(100)
  135. -- File opened with mode: a+t --
  136. text text text text text text text text text text text text text text text text text text text text
  137. int(100)
  138. -- File opened with mode: x --
  139. text text text text text text text text text text text text text text text text text text text text
  140. int(100)
  141. -- File opened with mode: xb --
  142. text text text text text text text text text text text text text text text text text text text text
  143. int(100)
  144. -- File opened with mode: xt --
  145. text text text text text text text text text text text text text text text text text text text text
  146. int(100)
  147. -- File opened with mode: x+ --
  148. text text text text text text text text text text text text text text text text text text text text
  149. int(100)
  150. -- File opened with mode: x+b --
  151. text text text text text text text text text text text text text text text text text text text text
  152. int(100)
  153. -- File opened with mode: x+t --
  154. text text text text text text text text text text text text text text text text text text text text
  155. int(100)
  156. -- File filled with content type: empty --
  157. -- File opened with mode: w --
  158. int(0)
  159. -- File opened with mode: wt --
  160. int(0)
  161. -- File opened with mode: wb --
  162. int(0)
  163. -- File opened with mode: w+ --
  164. int(0)
  165. -- File opened with mode: w+b --
  166. int(0)
  167. -- File opened with mode: w+t --
  168. int(0)
  169. -- File opened with mode: a --
  170. int(0)
  171. -- File opened with mode: at --
  172. int(0)
  173. -- File opened with mode: ab --
  174. int(0)
  175. -- File opened with mode: a+ --
  176. int(0)
  177. -- File opened with mode: a+b --
  178. int(0)
  179. -- File opened with mode: a+t --
  180. int(0)
  181. -- File opened with mode: x --
  182. int(0)
  183. -- File opened with mode: xb --
  184. int(0)
  185. -- File opened with mode: xt --
  186. int(0)
  187. -- File opened with mode: x+ --
  188. int(0)
  189. -- File opened with mode: x+b --
  190. int(0)
  191. -- File opened with mode: x+t --
  192. int(0)
  193. -- File filled with content type: alphanumeric --
  194. -- File opened with mode: w --
  195. ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12
  196. int(100)
  197. -- File opened with mode: wt --
  198. ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12
  199. int(100)
  200. -- File opened with mode: wb --
  201. ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12
  202. int(100)
  203. -- File opened with mode: w+ --
  204. ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12
  205. int(100)
  206. -- File opened with mode: w+b --
  207. ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12
  208. int(100)
  209. -- File opened with mode: w+t --
  210. ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12
  211. int(100)
  212. -- File opened with mode: a --
  213. ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12
  214. int(100)
  215. -- File opened with mode: at --
  216. ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12
  217. int(100)
  218. -- File opened with mode: ab --
  219. ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12
  220. int(100)
  221. -- File opened with mode: a+ --
  222. ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12
  223. int(100)
  224. -- File opened with mode: a+b --
  225. ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12
  226. int(100)
  227. -- File opened with mode: a+t --
  228. ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12
  229. int(100)
  230. -- File opened with mode: x --
  231. ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12
  232. int(100)
  233. -- File opened with mode: xb --
  234. ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12
  235. int(100)
  236. -- File opened with mode: xt --
  237. ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12
  238. int(100)
  239. -- File opened with mode: x+ --
  240. ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12
  241. int(100)
  242. -- File opened with mode: x+b --
  243. ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12
  244. int(100)
  245. -- File opened with mode: x+t --
  246. ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12
  247. int(100)
  248. -- File filled with content type: text_with_new_line --
  249. -- File opened with mode: w --
  250. line
  251. line of text
  252. line
  253. line of text
  254. line
  255. line of text
  256. line
  257. line of text
  258. line
  259. line of text
  260. line
  261. line
  262. int(100)
  263. -- File opened with mode: wt --
  264. line
  265. line of text
  266. line
  267. line of text
  268. line
  269. line of text
  270. line
  271. line of text
  272. line
  273. line of text
  274. line
  275. line
  276. int(100)
  277. -- File opened with mode: wb --
  278. line
  279. line of text
  280. line
  281. line of text
  282. line
  283. line of text
  284. line
  285. line of text
  286. line
  287. line of text
  288. line
  289. line
  290. int(100)
  291. -- File opened with mode: w+ --
  292. line
  293. line of text
  294. line
  295. line of text
  296. line
  297. line of text
  298. line
  299. line of text
  300. line
  301. line of text
  302. line
  303. line
  304. int(100)
  305. -- File opened with mode: w+b --
  306. line
  307. line of text
  308. line
  309. line of text
  310. line
  311. line of text
  312. line
  313. line of text
  314. line
  315. line of text
  316. line
  317. line
  318. int(100)
  319. -- File opened with mode: w+t --
  320. line
  321. line of text
  322. line
  323. line of text
  324. line
  325. line of text
  326. line
  327. line of text
  328. line
  329. line of text
  330. line
  331. line
  332. int(100)
  333. -- File opened with mode: a --
  334. line
  335. line of text
  336. line
  337. line of text
  338. line
  339. line of text
  340. line
  341. line of text
  342. line
  343. line of text
  344. line
  345. line
  346. int(100)
  347. -- File opened with mode: at --
  348. line
  349. line of text
  350. line
  351. line of text
  352. line
  353. line of text
  354. line
  355. line of text
  356. line
  357. line of text
  358. line
  359. line
  360. int(100)
  361. -- File opened with mode: ab --
  362. line
  363. line of text
  364. line
  365. line of text
  366. line
  367. line of text
  368. line
  369. line of text
  370. line
  371. line of text
  372. line
  373. line
  374. int(100)
  375. -- File opened with mode: a+ --
  376. line
  377. line of text
  378. line
  379. line of text
  380. line
  381. line of text
  382. line
  383. line of text
  384. line
  385. line of text
  386. line
  387. line
  388. int(100)
  389. -- File opened with mode: a+b --
  390. line
  391. line of text
  392. line
  393. line of text
  394. line
  395. line of text
  396. line
  397. line of text
  398. line
  399. line of text
  400. line
  401. line
  402. int(100)
  403. -- File opened with mode: a+t --
  404. line
  405. line of text
  406. line
  407. line of text
  408. line
  409. line of text
  410. line
  411. line of text
  412. line
  413. line of text
  414. line
  415. line
  416. int(100)
  417. -- File opened with mode: x --
  418. line
  419. line of text
  420. line
  421. line of text
  422. line
  423. line of text
  424. line
  425. line of text
  426. line
  427. line of text
  428. line
  429. line
  430. int(100)
  431. -- File opened with mode: xb --
  432. line
  433. line of text
  434. line
  435. line of text
  436. line
  437. line of text
  438. line
  439. line of text
  440. line
  441. line of text
  442. line
  443. line
  444. int(100)
  445. -- File opened with mode: xt --
  446. line
  447. line of text
  448. line
  449. line of text
  450. line
  451. line of text
  452. line
  453. line of text
  454. line
  455. line of text
  456. line
  457. line
  458. int(100)
  459. -- File opened with mode: x+ --
  460. line
  461. line of text
  462. line
  463. line of text
  464. line
  465. line of text
  466. line
  467. line of text
  468. line
  469. line of text
  470. line
  471. line
  472. int(100)
  473. -- File opened with mode: x+b --
  474. line
  475. line of text
  476. line
  477. line of text
  478. line
  479. line of text
  480. line
  481. line of text
  482. line
  483. line of text
  484. line
  485. line
  486. int(100)
  487. -- File opened with mode: x+t --
  488. line
  489. line of text
  490. line
  491. line of text
  492. line
  493. line of text
  494. line
  495. line of text
  496. line
  497. line of text
  498. line
  499. line
  500. int(100)
  501. Done