pathinfo_variation3.phpt 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. --TEST--
  2. Test pathinfo() function : usage variation
  3. --CREDITS--
  4. Dave Kelsey <d_kelsey@uk.ibm.com>
  5. --FILE--
  6. <?php
  7. echo "*** Testing pathinfo() : usage variation ***\n";
  8. $testfile = "/usr/include/arpa/inet.h";
  9. var_dump(pathinfo("./"));
  10. var_dump(pathinfo("/."));
  11. var_dump(pathinfo(".cvsignore"));
  12. var_dump(pathinfo($testfile, PATHINFO_BASENAME));
  13. var_dump(pathinfo($testfile, PATHINFO_FILENAME));
  14. var_dump(pathinfo($testfile, PATHINFO_EXTENSION));
  15. var_dump(pathinfo($testfile, PATHINFO_DIRNAME));
  16. var_dump(pathinfo($testfile, PATHINFO_EXTENSION|PATHINFO_FILENAME|PATHINFO_DIRNAME));
  17. var_dump(pathinfo($testfile, PATHINFO_EXTENSION|PATHINFO_FILENAME|PATHINFO_BASENAME));
  18. var_dump(pathinfo($testfile, PATHINFO_EXTENSION|PATHINFO_FILENAME));
  19. var_dump(pathinfo($testfile, PATHINFO_EXTENSION|PATHINFO_BASENAME));
  20. var_dump(pathinfo($testfile, PATHINFO_FILENAME|PATHINFO_DIRNAME));
  21. var_dump(pathinfo($testfile, PATHINFO_FILENAME|PATHINFO_BASENAME));
  22. var_dump(pathinfo($testfile, PATHINFO_DIRNAME|PATHINFO_EXTENSION));
  23. var_dump(pathinfo($testfile, PATHINFO_DIRNAME|PATHINFO_BASENAME));
  24. ?>
  25. --EXPECTF--
  26. *** Testing pathinfo() : usage variation ***
  27. array(4) {
  28. ["dirname"]=>
  29. string(1) "."
  30. ["basename"]=>
  31. string(1) "."
  32. ["extension"]=>
  33. string(0) ""
  34. ["filename"]=>
  35. string(0) ""
  36. }
  37. array(4) {
  38. ["dirname"]=>
  39. string(1) "%s"
  40. ["basename"]=>
  41. string(1) "."
  42. ["extension"]=>
  43. string(0) ""
  44. ["filename"]=>
  45. string(0) ""
  46. }
  47. array(4) {
  48. ["dirname"]=>
  49. string(1) "."
  50. ["basename"]=>
  51. string(10) ".cvsignore"
  52. ["extension"]=>
  53. string(9) "cvsignore"
  54. ["filename"]=>
  55. string(0) ""
  56. }
  57. string(6) "inet.h"
  58. string(4) "inet"
  59. string(1) "h"
  60. string(17) "/usr/include/arpa"
  61. string(17) "/usr/include/arpa"
  62. string(6) "inet.h"
  63. string(1) "h"
  64. string(6) "inet.h"
  65. string(17) "/usr/include/arpa"
  66. string(6) "inet.h"
  67. string(17) "/usr/include/arpa"
  68. string(17) "/usr/include/arpa"