Jump to content

Converting Unix Timestamps


Hartley

Recommended Posts

I'm having some problems reading this on the PHP site. I need to do the following and don't know how to achieve it:

 

1. Convert a birthday into a unix timestamp (mm-dd-yyyy)

2. Convert it back.

 

Thanks in advance for any help you may be able to provide.

Link to comment
Share on other sites

I decided to take a different approach to this, and going to post the result:

 

<?php

while($row = mysql_fetch_assoc($fullquery))
{
   $user = "{$row['username']}";
   $bday = "{$row['birthday']}";
list($month, $day, $year) = split('[/.-]', $bday);
$date = date("m-d-Y");
list($monthnow, $daynow, $yearnow) = split('[/.-]', $date);

$day1 = $daynow - $day;

if ($day1 < 0) {
$monthnow = $monthnow - 1; }
else {
$monthnow = $monthnow; }

$month1 = $monthnow - $month;

if ($month1 < 0) {
$yearnow = $yearnow - 1; }
else {
$yearnow = $yearnow; }

$age = $yearnow - $year;

?>

 

This breaks down the current date and birthday, and does some math to each separate section. The math determines whether or not that date has passed yet this year. If it did pass, it will simply do the current year minus the old year. If it hasn't passed, it will take 1 off of the final result.

Link to comment
Share on other sites

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.