HEX
Server: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.30
System: Linux iZj6c1151k3ad370bosnmsZ 3.10.0-1160.76.1.el7.x86_64 #1 SMP Wed Aug 10 16:21:17 UTC 2022 x86_64
User: root (0)
PHP: 7.4.30
Disabled: NONE
Upload Files
File: /var/www/html/sparkle/wp-content/plugins/wp-all-export/src/App/Service/SnippetParser.php
<?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;
    }
}