1 | <?php |
||
13 | class RegularExpressions extends AbstractFunctionCallAnalyzer |
||
14 | { |
||
15 | static public $map = [ |
||
16 | 'preg_filter' => 0, |
||
17 | 'preg_grep' => 0, |
||
18 | 'preg_match_all' => 0, |
||
19 | 'preg_match' => 0, |
||
20 | 'preg_quote' => 0, |
||
21 | // 'preg_replace_callback_array' => 0, |
||
22 | 'preg_replace_callback' => 0, |
||
23 | 'preg_replace' => 0, |
||
24 | 'preg_split' => 0, |
||
25 | ]; |
||
26 | |||
27 | /** |
||
28 | * @param FuncCall $funcCall |
||
29 | * @param Context $context |
||
30 | * @return mixed |
||
31 | */ |
||
32 | 10 | public function pass(FuncCall $funcCall, Context $context) |
|
53 | } |
||
54 |