Предполагая, что валюта может меняться в зависимости от IP / страны, я бы использовал Explode (я не очень хорош в Regex)
//consider that $html contains the page source
$html = explode('<span class="price final-price our fksk-our" id="fk-mprod-our-id">', $html);
$html = explode("</span>', $html[1]);
$price = $html[1];
Надеюсь, это поможет.