Jump to content

break up a string into integers


android6011

Recommended Posts

Ok, I have a variable named length, the variable outputs something such as 4:06 . What I want to do is have the page refresh after that length, but the meta tag needs seconds. I know how to do the math portion of it, im just not sure how to break it up so I can get the 4 and the 06 separate. thanks

Link to comment
https://forums.phpfreaks.com/topic/54801-break-up-a-string-into-integers/
Share on other sites

I think kenrbnsn has the best solution, but if you ever have a string where you have a number of integers, and you simply want to extract them all, you could do something like this, and you wouldn't have to worry about what the separators were:

<?php
if (preg_match_all('|\d+|', $string, $matches)) {
  foreach ($matches[0] as $x) {
    echo "Found $x<br />\n";
  }
}
?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.