escapeshellcmd-win32.phpt 885 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. --TEST--
  2. Test escapeshellcmd() functionality on Windows
  3. --SKIPIF--
  4. <?php
  5. if( substr(PHP_OS, 0, 3) != 'WIN' ) {
  6. die('skip...Valid for Windows only');
  7. }
  8. ?>
  9. --FILE--
  10. <?php
  11. echo "*** Testing escapeshellcmd() basic operations ***\n";
  12. $data = array(
  13. '"abc',
  14. "'abc",
  15. '?<>',
  16. '()[]{}$',
  17. '%^',
  18. '#&;`|*?',
  19. '~<>\\',
  20. '%NOENV%',
  21. '!NOENV!'
  22. );
  23. $count = 1;
  24. foreach ($data AS $value) {
  25. echo "-- Test " . $count++ . " --\n";
  26. var_dump(escapeshellcmd($value));
  27. }
  28. echo "Done\n";
  29. ?>
  30. --EXPECT--
  31. *** Testing escapeshellcmd() basic operations ***
  32. -- Test 1 --
  33. string(5) "^"abc"
  34. -- Test 2 --
  35. string(5) "^'abc"
  36. -- Test 3 --
  37. string(6) "^?^<^>"
  38. -- Test 4 --
  39. string(14) "^(^)^[^]^{^}^$"
  40. -- Test 5 --
  41. string(4) "^%^^"
  42. -- Test 6 --
  43. string(14) "^#^&^;^`^|^*^?"
  44. -- Test 7 --
  45. string(8) "^~^<^>^\"
  46. -- Test 8 --
  47. string(9) "^%NOENV^%"
  48. -- Test 9 --
  49. string(9) "^!NOENV^!"
  50. Done