shellExec.test 545 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. Shell execution
  2. -----
  3. <?php
  4. ``;
  5. `test`;
  6. `test $A`;
  7. `test \``;
  8. `test \"`;
  9. -----
  10. array(
  11. 0: Expr_ShellExec(
  12. parts: array(
  13. )
  14. )
  15. 1: Expr_ShellExec(
  16. parts: array(
  17. 0: test
  18. )
  19. )
  20. 2: Expr_ShellExec(
  21. parts: array(
  22. 0: test
  23. 1: Expr_Variable(
  24. name: A
  25. )
  26. )
  27. )
  28. 3: Expr_ShellExec(
  29. parts: array(
  30. 0: test `
  31. )
  32. )
  33. 4: Expr_ShellExec(
  34. parts: array(
  35. 0: test \"
  36. )
  37. )
  38. )