Jump to content

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";
  }
}
?>

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.