1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-15 10:57:11 +01:00
PHP-Parser/test/code/expr/shellExec.test
2011-11-27 11:20:35 +01:00

33 lines
480 B
Plaintext

Shell execution
-----
<?php
`test`;
`test $A`;
`test \``;
`test \"`;
-----
array(
0: Expr_ShellExec(
parts: array(
0: test
)
)
1: Expr_ShellExec(
parts: array(
0: test
1: Expr_Variable(
name: A
)
)
)
2: Expr_ShellExec(
parts: array(
0: test `
)
)
3: Expr_ShellExec(
parts: array(
0: test \"
)
)
)