$utterance = 'This is a brown bear with 7 kids';
$template = 'This is a {color} bear with {kids} kids';
$templateRegex = '/' . preg_replace('/{(.*?)}/', '(?<1>.*?)', $template) . '/';
$matches = [];
preg_match($templateRegex, $utterance, $matches);
var_dump($matches);