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

4 lines
146 B
PHP

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