1 | <?php |
||
10 | class AnonymousFunction |
||
11 | { |
||
12 | /** |
||
13 | * An array of parameters to the function represented by this instance |
||
14 | * |
||
15 | * @var array |
||
16 | */ |
||
17 | private $_parameters; |
||
18 | |||
19 | /** |
||
20 | * Parameters as string separated by comma |
||
21 | * |
||
22 | * @var string |
||
23 | */ |
||
24 | private $_parametersAsString; |
||
25 | |||
26 | /** |
||
27 | * body of the function represented by this instance |
||
28 | * |
||
29 | * @var string |
||
30 | */ |
||
31 | private $_code; |
||
32 | |||
33 | /** |
||
34 | * Reference to the anonymous function represented by this instance |
||
35 | * reference will be the name of the function in the form char(0).lamba_n. |
||
36 | * |
||
37 | * @var string |
||
38 | */ |
||
39 | private $_reference = null; |
||
40 | |||
41 | /** |
||
42 | * Create new instance of AnonymousFunction |
||
43 | * |
||
44 | * @param array $parameters Array of parameters |
||
45 | * @param string $code Body of the function |
||
46 | */ |
||
47 | public function __construct($parameters, $code) |
||
61 | |||
62 | /** |
||
63 | * Gets function parameters as array. |
||
64 | * |
||
65 | * @return array |
||
66 | */ |
||
67 | public function getParameters() |
||
71 | |||
72 | /** |
||
73 | * Gets function parameters as string seperated by comma |
||
74 | * |
||
75 | * @return string |
||
76 | */ |
||
77 | public function getParametersAsString() |
||
81 | |||
82 | /** |
||
83 | * Gets number of parameters |
||
84 | * |
||
85 | * @return int |
||
86 | */ |
||
87 | public function getParametersCount() |
||
91 | |||
92 | /** |
||
93 | * Gets function body |
||
94 | * |
||
95 | * @return string |
||
96 | */ |
||
97 | public function getCode() |
||
101 | |||
102 | /** |
||
103 | * Gets refernece to the anonymous function. |
||
104 | * |
||
105 | * @return string |
||
106 | */ |
||
107 | public function getReference() |
||
117 | } |
create_function
can pose a great security vulnerability as it is similar toeval
, and could be used for arbitrary code execution. We highly recommend to use a closure instead.