SnippetParser.php
1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
namespace Wpae\App\Service;
class SnippetParser
{
const SNIPPET_MATCH_REGEX = '/{([^}^\"^\']*)}/';
const FUNCTION_MATCH_REGEX = '%(\[[^\]\[]*\])%';
public function parseSnippets($string)
{
$snippets = array();
preg_match_all(self::SNIPPET_MATCH_REGEX, $string, $snippets);
if(is_array($snippets)) {
$snippets = array_filter($snippets[1]);
}
foreach ($snippets as &$snippet) {
$snippet = trim($snippet, "{}");
}
return $snippets;
}
public function parseFunctions($string)
{
$functions = array();
$functionsResponse = array();
preg_match_all(self::FUNCTION_MATCH_REGEX, $string, $functions);
if(is_array($functions) && isset($functions[0]) && !empty($functions[0]) && $functions[0]) {
$functionsResponse[] = $functions[0];
}
$functionsResponse = array_filter($functionsResponse);
if(isset($functionsResponse[0])) {
$functionsResponse = $functionsResponse[0];
}
foreach($functionsResponse as &$function) {
$function = trim($function,"[]");
}
return $functionsResponse;
}
}