<?php
echo '<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>';
$file_content = file_get_contents('./cen.html'); // получаем конетнт файла
if(preg_match('<div class="js-store-price-wrapper t-store__card__price-wrapper">(.*?)</div>', $file_content, $result))
{
foreach($result as $span_text)
echo $span_text . '<br>';
}else
echo 'Совпадений нет';