HEX
Server: Apache/2.4.49 (FreeBSD) OpenSSL/1.0.2s-freebsd PHP/5.6.36
System: FreeBSD hosting.icon.bg 11.3-RELEASE-p13 FreeBSD 11.3-RELEASE-p13 #0: Tue Sep 1 06:56:51 UTC 2020 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64
User: ftpuser (1002)
PHP: 5.6.36
Disabled: NONE
Upload Files
File: /hosting/kak.bg/web/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;
    }
}