PHP中的正则表达式,用于提取分钟和秒值

I have the following section of HTML markup...

<div style="margin: 0px 0px 0px 157px; padding: 16px 0px 16px 0px;">
    <p class="sectionHdr">The page you requested is currently unavailable because the statistics are being updated.</p>
    <p class="sectionHdr">The statistics update will finish in about&nbsp;48 minutes 39 seconds.</p>
</div>

What's the PHP code to extract the minutes and seconds values using a regular expression please?

I could do it with string manipulation, but I'd prefer to do it with a regular expression, I've just never been able to wrap my head around them!

Thanks to Robbie I've managed to figure out this will work... http://www.phpliveregex.com/p/iWb.

It's not quite as flexible as I was imagining, but it'll do the trick.

RegExp is:

/(\d+) minutes (\d+) seconds/