tempnam_variation4-0.phpt 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638
  1. --TEST--
  2. Test tempnam() function: usage variations - permissions(0000 to 0350) of dir
  3. --SKIPIF--
  4. <?php
  5. if (substr(PHP_OS, 0, 3) == 'WIN') {
  6. die('skip Not valid for Windows');
  7. }
  8. // Skip if being run by root
  9. $filename = dirname(__FILE__)."/is_readable_root_check.tmp";
  10. $fp = fopen($filename, 'w');
  11. fclose($fp);
  12. if(fileowner($filename) == 0) {
  13. unlink ($filename);
  14. die('skip cannot be run as root');
  15. }
  16. unlink($filename);
  17. ?>
  18. --FILE--
  19. <?php
  20. /* Prototype: string tempnam ( string $dir, string $prefix );
  21. Description: Create file with unique file name.
  22. */
  23. /* Trying to create the file in a dir with permissions from 0000 to 0350,
  24. Allowable permissions: files are expected to be created in the input dir
  25. Non-allowable permissions: files are expected to be created in '/tmp' dir
  26. */
  27. echo "*** Testing tempnam() with dir of permissions from 0000 to 0350 ***\n";
  28. $file_path = dirname(__FILE__);
  29. $dir_name = $file_path."/tempnam_variation4";
  30. $prefix = "tempnamVar4.";
  31. mkdir($dir_name);
  32. for($mode = 0000; $mode <= 0350; $mode++) {
  33. chmod($dir_name, $mode);
  34. $file_name = tempnam($dir_name, $prefix);
  35. if(file_exists($file_name) ) {
  36. if (dirname($file_name) != $dir_name) {
  37. /* Either there's a notice or error */
  38. printf("%o\n", $mode);
  39. if (realpath(dirname($file_name)) != realpath(sys_get_temp_dir())) {
  40. echo " created in unexpected dir\n";
  41. }
  42. }
  43. unlink($file_name);
  44. }
  45. else {
  46. print("FAILED: File is not created\n");
  47. }
  48. }
  49. rmdir($dir_name);
  50. echo "*** Done ***\n";
  51. ?>
  52. --EXPECTF--
  53. *** Testing tempnam() with dir of permissions from 0000 to 0350 ***
  54. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  55. 0
  56. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  57. 1
  58. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  59. 2
  60. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  61. 3
  62. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  63. 4
  64. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  65. 5
  66. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  67. 6
  68. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  69. 7
  70. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  71. 10
  72. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  73. 11
  74. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  75. 12
  76. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  77. 13
  78. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  79. 14
  80. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  81. 15
  82. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  83. 16
  84. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  85. 17
  86. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  87. 20
  88. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  89. 21
  90. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  91. 22
  92. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  93. 23
  94. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  95. 24
  96. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  97. 25
  98. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  99. 26
  100. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  101. 27
  102. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  103. 30
  104. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  105. 31
  106. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  107. 32
  108. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  109. 33
  110. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  111. 34
  112. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  113. 35
  114. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  115. 36
  116. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  117. 37
  118. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  119. 40
  120. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  121. 41
  122. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  123. 42
  124. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  125. 43
  126. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  127. 44
  128. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  129. 45
  130. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  131. 46
  132. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  133. 47
  134. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  135. 50
  136. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  137. 51
  138. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  139. 52
  140. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  141. 53
  142. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  143. 54
  144. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  145. 55
  146. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  147. 56
  148. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  149. 57
  150. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  151. 60
  152. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  153. 61
  154. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  155. 62
  156. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  157. 63
  158. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  159. 64
  160. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  161. 65
  162. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  163. 66
  164. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  165. 67
  166. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  167. 70
  168. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  169. 71
  170. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  171. 72
  172. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  173. 73
  174. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  175. 74
  176. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  177. 75
  178. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  179. 76
  180. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  181. 77
  182. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  183. 100
  184. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  185. 101
  186. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  187. 102
  188. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  189. 103
  190. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  191. 104
  192. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  193. 105
  194. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  195. 106
  196. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  197. 107
  198. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  199. 110
  200. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  201. 111
  202. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  203. 112
  204. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  205. 113
  206. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  207. 114
  208. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  209. 115
  210. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  211. 116
  212. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  213. 117
  214. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  215. 120
  216. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  217. 121
  218. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  219. 122
  220. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  221. 123
  222. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  223. 124
  224. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  225. 125
  226. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  227. 126
  228. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  229. 127
  230. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  231. 130
  232. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  233. 131
  234. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  235. 132
  236. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  237. 133
  238. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  239. 134
  240. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  241. 135
  242. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  243. 136
  244. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  245. 137
  246. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  247. 140
  248. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  249. 141
  250. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  251. 142
  252. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  253. 143
  254. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  255. 144
  256. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  257. 145
  258. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  259. 146
  260. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  261. 147
  262. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  263. 150
  264. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  265. 151
  266. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  267. 152
  268. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  269. 153
  270. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  271. 154
  272. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  273. 155
  274. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  275. 156
  276. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  277. 157
  278. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  279. 160
  280. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  281. 161
  282. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  283. 162
  284. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  285. 163
  286. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  287. 164
  288. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  289. 165
  290. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  291. 166
  292. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  293. 167
  294. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  295. 170
  296. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  297. 171
  298. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  299. 172
  300. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  301. 173
  302. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  303. 174
  304. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  305. 175
  306. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  307. 176
  308. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  309. 177
  310. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  311. 200
  312. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  313. 201
  314. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  315. 202
  316. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  317. 203
  318. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  319. 204
  320. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  321. 205
  322. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  323. 206
  324. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  325. 207
  326. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  327. 210
  328. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  329. 211
  330. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  331. 212
  332. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  333. 213
  334. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  335. 214
  336. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  337. 215
  338. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  339. 216
  340. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  341. 217
  342. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  343. 220
  344. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  345. 221
  346. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  347. 222
  348. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  349. 223
  350. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  351. 224
  352. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  353. 225
  354. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  355. 226
  356. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  357. 227
  358. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  359. 230
  360. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  361. 231
  362. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  363. 232
  364. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  365. 233
  366. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  367. 234
  368. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  369. 235
  370. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  371. 236
  372. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  373. 237
  374. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  375. 240
  376. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  377. 241
  378. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  379. 242
  380. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  381. 243
  382. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  383. 244
  384. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  385. 245
  386. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  387. 246
  388. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  389. 247
  390. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  391. 250
  392. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  393. 251
  394. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  395. 252
  396. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  397. 253
  398. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  399. 254
  400. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  401. 255
  402. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  403. 256
  404. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  405. 257
  406. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  407. 260
  408. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  409. 261
  410. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  411. 262
  412. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  413. 263
  414. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  415. 264
  416. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  417. 265
  418. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  419. 266
  420. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  421. 267
  422. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  423. 270
  424. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  425. 271
  426. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  427. 272
  428. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  429. 273
  430. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  431. 274
  432. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  433. 275
  434. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  435. 276
  436. Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php on line 20
  437. 277
  438. *** Done ***