Parser pobierający dane między dwoma nazwisami

<?php

class InputsParser {

    /**
     * @param string $content
     * @return array
     */
    public static function initParser($content) {
        $inputsArray = [];
        //get all between [] to array     
        preg_match_all('@\[\s*input .*?\]@', $content, $inputsArray);
        return $inputsArray;
    }

}
Komentarze wyłączone