Files
citrus-cms/app/Functions/pattern-to-variables.php
T
2026-04-28 21:14:25 +03:00

8 lines
169 B
PHP

<?php function pattern_to_variables($patternString) {
preg_match_all('/{(.*?)}/',$patternString, $matches);
return $matches;
} ?>