PluginProbe
WPIDE – File Manager & Code Editor / 2.2
WPIDE – File Manager & Code Editor v2.2
3.5.8 3.5.7 2.0.14 2.0.15 2.0.16 2.0.2 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 2.1 2.2 2.3 2.3.1 2.3.2 2.4.0 2.5 2.6 3.0 3.1 3.2 3.3 3.4 All 54 releases
wpide / PHP-Parser / test / code / parser / expr / includeAndEval.test

includeAndEval.test in WPIDE – File Manager & Code Editor 2.2, at PHP-Parser/test/code/parser/expr/includeAndEval.test

40 lines 644 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 Include and eval
2 -----
3 <?php
4 include 'A.php';
5 include_once 'A.php';
6 require 'A.php';
7 require_once 'A.php';
8 eval('A');
9 -----
10 array(
11 0: Expr_Include(
12 expr: Scalar_String(
13 value: A.php
14 )
15 type: 1
16 )
17 1: Expr_Include(
18 expr: Scalar_String(
19 value: A.php
20 )
21 type: 2
22 )
23 2: Expr_Include(
24 expr: Scalar_String(
25 value: A.php
26 )
27 type: 3
28 )
29 3: Expr_Include(
30 expr: Scalar_String(
31 value: A.php
32 )
33 type: 4
34 )
35 4: Expr_Eval(
36 expr: Scalar_String(
37 value: A
38 )
39 )
40 )