Вы не детализировали форматы полей, так что вот пример, который вы можете настроить:
preg_match('/^{(\w+):(\d+){(\d+):(\w+)}}$/', '{an_option_name:123{456:a_variant_name}}', $matches);
$option_name = $matches[1];
$option_id = $matches[2];
$variant_id = $matches[3];
$variant_name = $matches[4];