PluginProbe
BetterDocs – AI Documentation, Knowledge Base, MCP Server, Docs, Wikis, FAQ & Chatbot / 4.5.3
BetterDocs – AI Documentation, Knowledge Base, MCP Server, Docs, Wikis, FAQ & Chatbot v4.5.3
4.9.1 4.9.0 4.8.2 4.8.1 4.8.0 4.7.0 4.6.2 4.6.1 4.6.0 4.5.6 4.5.5 4.5.4 4.5.3 4.5.2 4.5.1 4.5.0 4.4.1 4.4.0 3.3.4 3.4.0 3.4.1 3.4.2 3.5.0 3.5.1 3.5.2 All 199 releases
betterdocs / vendor / nikic / php-parser / test / code / parser / expr / shellExec.test

shellExec.test in BetterDocs – AI Documentation, Knowledge Base, MCP Server, Docs, Wikis, FAQ & Chatbot 4.5.3, at vendor/nikic/php-parser/test/code/parser/expr/shellExec.test

46 lines 801 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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: Scalar_EncapsedStringPart(
18 value: test
19 )
20 )
21 )
22 2: Expr_ShellExec(
23 parts: array(
24 0: Scalar_EncapsedStringPart(
25 value: test
26 )
27 1: Expr_Variable(
28 name: A
29 )
30 )
31 )
32 3: Expr_ShellExec(
33 parts: array(
34 0: Scalar_EncapsedStringPart(
35 value: test `
36 )
37 )
38 )
39 4: Expr_ShellExec(
40 parts: array(
41 0: Scalar_EncapsedStringPart(
42 value: test \"
43 )
44 )
45 )
46 )