<?php

$textMostraMarcado = '3 3 1 6 8 6 8 <b>1 1 1 </b>2 4 2 7 5 <b>4 4 4 4 </b>9 <b>8 8 8 </b>7';

if (preg_match_all("/<b>.*?<\/b>/", $textMostraMarcado, $matches))
{
  print_r($matches[0]);
}