basename_variation2-win32.phpt 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. --TEST--
  2. Testing basename() with various values for the suffix parameter
  3. --SKIPIF--
  4. <?php
  5. if (substr(PHP_OS, 0, 3) != 'WIN') {
  6. die('skip Windows only basename tests');
  7. }
  8. ?>
  9. --FILE--
  10. <?php
  11. $paths = array (
  12. "foo",
  13. "foo/",
  14. "foo\\",
  15. "foo.bar",
  16. "foo.bar/",
  17. "foo.bar\\",
  18. "dir/foo.bar",
  19. "dir\\foo.bar",
  20. "dir with spaces/foo.bar",
  21. "dir with spaces\\foo.bar",
  22. );
  23. $suffixes = array (
  24. ".bar",
  25. ".b",
  26. ".",
  27. " ",
  28. "foo",
  29. "foo.bar",
  30. "foo/bar",
  31. "foo\\bar",
  32. "/",
  33. "\\",
  34. );
  35. foreach ($paths as $path) {
  36. foreach ($suffixes as $suffix) {
  37. echo "basename for path $path, supplying suffix $suffix is:\n";
  38. var_dump(basename($path, $suffix));
  39. }
  40. }
  41. echo "\ndone\n";
  42. ?>
  43. --EXPECT--
  44. basename for path foo, supplying suffix .bar is:
  45. string(3) "foo"
  46. basename for path foo, supplying suffix .b is:
  47. string(3) "foo"
  48. basename for path foo, supplying suffix . is:
  49. string(3) "foo"
  50. basename for path foo, supplying suffix is:
  51. string(3) "foo"
  52. basename for path foo, supplying suffix foo is:
  53. string(3) "foo"
  54. basename for path foo, supplying suffix foo.bar is:
  55. string(3) "foo"
  56. basename for path foo, supplying suffix foo/bar is:
  57. string(3) "foo"
  58. basename for path foo, supplying suffix foo\bar is:
  59. string(3) "foo"
  60. basename for path foo, supplying suffix / is:
  61. string(3) "foo"
  62. basename for path foo, supplying suffix \ is:
  63. string(3) "foo"
  64. basename for path foo/, supplying suffix .bar is:
  65. string(3) "foo"
  66. basename for path foo/, supplying suffix .b is:
  67. string(3) "foo"
  68. basename for path foo/, supplying suffix . is:
  69. string(3) "foo"
  70. basename for path foo/, supplying suffix is:
  71. string(3) "foo"
  72. basename for path foo/, supplying suffix foo is:
  73. string(3) "foo"
  74. basename for path foo/, supplying suffix foo.bar is:
  75. string(3) "foo"
  76. basename for path foo/, supplying suffix foo/bar is:
  77. string(3) "foo"
  78. basename for path foo/, supplying suffix foo\bar is:
  79. string(3) "foo"
  80. basename for path foo/, supplying suffix / is:
  81. string(3) "foo"
  82. basename for path foo/, supplying suffix \ is:
  83. string(3) "foo"
  84. basename for path foo\, supplying suffix .bar is:
  85. string(3) "foo"
  86. basename for path foo\, supplying suffix .b is:
  87. string(3) "foo"
  88. basename for path foo\, supplying suffix . is:
  89. string(3) "foo"
  90. basename for path foo\, supplying suffix is:
  91. string(3) "foo"
  92. basename for path foo\, supplying suffix foo is:
  93. string(3) "foo"
  94. basename for path foo\, supplying suffix foo.bar is:
  95. string(3) "foo"
  96. basename for path foo\, supplying suffix foo/bar is:
  97. string(3) "foo"
  98. basename for path foo\, supplying suffix foo\bar is:
  99. string(3) "foo"
  100. basename for path foo\, supplying suffix / is:
  101. string(3) "foo"
  102. basename for path foo\, supplying suffix \ is:
  103. string(3) "foo"
  104. basename for path foo.bar, supplying suffix .bar is:
  105. string(3) "foo"
  106. basename for path foo.bar, supplying suffix .b is:
  107. string(7) "foo.bar"
  108. basename for path foo.bar, supplying suffix . is:
  109. string(7) "foo.bar"
  110. basename for path foo.bar, supplying suffix is:
  111. string(7) "foo.bar"
  112. basename for path foo.bar, supplying suffix foo is:
  113. string(7) "foo.bar"
  114. basename for path foo.bar, supplying suffix foo.bar is:
  115. string(7) "foo.bar"
  116. basename for path foo.bar, supplying suffix foo/bar is:
  117. string(7) "foo.bar"
  118. basename for path foo.bar, supplying suffix foo\bar is:
  119. string(7) "foo.bar"
  120. basename for path foo.bar, supplying suffix / is:
  121. string(7) "foo.bar"
  122. basename for path foo.bar, supplying suffix \ is:
  123. string(7) "foo.bar"
  124. basename for path foo.bar/, supplying suffix .bar is:
  125. string(3) "foo"
  126. basename for path foo.bar/, supplying suffix .b is:
  127. string(7) "foo.bar"
  128. basename for path foo.bar/, supplying suffix . is:
  129. string(7) "foo.bar"
  130. basename for path foo.bar/, supplying suffix is:
  131. string(7) "foo.bar"
  132. basename for path foo.bar/, supplying suffix foo is:
  133. string(7) "foo.bar"
  134. basename for path foo.bar/, supplying suffix foo.bar is:
  135. string(7) "foo.bar"
  136. basename for path foo.bar/, supplying suffix foo/bar is:
  137. string(7) "foo.bar"
  138. basename for path foo.bar/, supplying suffix foo\bar is:
  139. string(7) "foo.bar"
  140. basename for path foo.bar/, supplying suffix / is:
  141. string(7) "foo.bar"
  142. basename for path foo.bar/, supplying suffix \ is:
  143. string(7) "foo.bar"
  144. basename for path foo.bar\, supplying suffix .bar is:
  145. string(3) "foo"
  146. basename for path foo.bar\, supplying suffix .b is:
  147. string(7) "foo.bar"
  148. basename for path foo.bar\, supplying suffix . is:
  149. string(7) "foo.bar"
  150. basename for path foo.bar\, supplying suffix is:
  151. string(7) "foo.bar"
  152. basename for path foo.bar\, supplying suffix foo is:
  153. string(7) "foo.bar"
  154. basename for path foo.bar\, supplying suffix foo.bar is:
  155. string(7) "foo.bar"
  156. basename for path foo.bar\, supplying suffix foo/bar is:
  157. string(7) "foo.bar"
  158. basename for path foo.bar\, supplying suffix foo\bar is:
  159. string(7) "foo.bar"
  160. basename for path foo.bar\, supplying suffix / is:
  161. string(7) "foo.bar"
  162. basename for path foo.bar\, supplying suffix \ is:
  163. string(7) "foo.bar"
  164. basename for path dir/foo.bar, supplying suffix .bar is:
  165. string(3) "foo"
  166. basename for path dir/foo.bar, supplying suffix .b is:
  167. string(7) "foo.bar"
  168. basename for path dir/foo.bar, supplying suffix . is:
  169. string(7) "foo.bar"
  170. basename for path dir/foo.bar, supplying suffix is:
  171. string(7) "foo.bar"
  172. basename for path dir/foo.bar, supplying suffix foo is:
  173. string(7) "foo.bar"
  174. basename for path dir/foo.bar, supplying suffix foo.bar is:
  175. string(7) "foo.bar"
  176. basename for path dir/foo.bar, supplying suffix foo/bar is:
  177. string(7) "foo.bar"
  178. basename for path dir/foo.bar, supplying suffix foo\bar is:
  179. string(7) "foo.bar"
  180. basename for path dir/foo.bar, supplying suffix / is:
  181. string(7) "foo.bar"
  182. basename for path dir/foo.bar, supplying suffix \ is:
  183. string(7) "foo.bar"
  184. basename for path dir\foo.bar, supplying suffix .bar is:
  185. string(3) "foo"
  186. basename for path dir\foo.bar, supplying suffix .b is:
  187. string(7) "foo.bar"
  188. basename for path dir\foo.bar, supplying suffix . is:
  189. string(7) "foo.bar"
  190. basename for path dir\foo.bar, supplying suffix is:
  191. string(7) "foo.bar"
  192. basename for path dir\foo.bar, supplying suffix foo is:
  193. string(7) "foo.bar"
  194. basename for path dir\foo.bar, supplying suffix foo.bar is:
  195. string(7) "foo.bar"
  196. basename for path dir\foo.bar, supplying suffix foo/bar is:
  197. string(7) "foo.bar"
  198. basename for path dir\foo.bar, supplying suffix foo\bar is:
  199. string(7) "foo.bar"
  200. basename for path dir\foo.bar, supplying suffix / is:
  201. string(7) "foo.bar"
  202. basename for path dir\foo.bar, supplying suffix \ is:
  203. string(7) "foo.bar"
  204. basename for path dir with spaces/foo.bar, supplying suffix .bar is:
  205. string(3) "foo"
  206. basename for path dir with spaces/foo.bar, supplying suffix .b is:
  207. string(7) "foo.bar"
  208. basename for path dir with spaces/foo.bar, supplying suffix . is:
  209. string(7) "foo.bar"
  210. basename for path dir with spaces/foo.bar, supplying suffix is:
  211. string(7) "foo.bar"
  212. basename for path dir with spaces/foo.bar, supplying suffix foo is:
  213. string(7) "foo.bar"
  214. basename for path dir with spaces/foo.bar, supplying suffix foo.bar is:
  215. string(7) "foo.bar"
  216. basename for path dir with spaces/foo.bar, supplying suffix foo/bar is:
  217. string(7) "foo.bar"
  218. basename for path dir with spaces/foo.bar, supplying suffix foo\bar is:
  219. string(7) "foo.bar"
  220. basename for path dir with spaces/foo.bar, supplying suffix / is:
  221. string(7) "foo.bar"
  222. basename for path dir with spaces/foo.bar, supplying suffix \ is:
  223. string(7) "foo.bar"
  224. basename for path dir with spaces\foo.bar, supplying suffix .bar is:
  225. string(3) "foo"
  226. basename for path dir with spaces\foo.bar, supplying suffix .b is:
  227. string(7) "foo.bar"
  228. basename for path dir with spaces\foo.bar, supplying suffix . is:
  229. string(7) "foo.bar"
  230. basename for path dir with spaces\foo.bar, supplying suffix is:
  231. string(7) "foo.bar"
  232. basename for path dir with spaces\foo.bar, supplying suffix foo is:
  233. string(7) "foo.bar"
  234. basename for path dir with spaces\foo.bar, supplying suffix foo.bar is:
  235. string(7) "foo.bar"
  236. basename for path dir with spaces\foo.bar, supplying suffix foo/bar is:
  237. string(7) "foo.bar"
  238. basename for path dir with spaces\foo.bar, supplying suffix foo\bar is:
  239. string(7) "foo.bar"
  240. basename for path dir with spaces\foo.bar, supplying suffix / is:
  241. string(7) "foo.bar"
  242. basename for path dir with spaces\foo.bar, supplying suffix \ is:
  243. string(7) "foo.bar"
  244. done