Welcome Guest, Not a member yet? Register   Sign In
relative dates?
#9

[eluser]Derek Allard[/eluser]
Clemens wrote this, I can't take credit. Add it to your date helper and save it in application/helpers
Code:
// ------------------------------------------------------------------------
/**
* Convert MySQL's DATE (YYYY-MM-DD) or DATETIME (YYYY-MM-DD hh:mm:ss) to timestamp
*
* Returns the timestamp equivalent of a given DATE/DATETIME
*
* @todo add regex to validate given datetime
* @author Clemens Kofler <[email protected]>
* @access    public
* @return    integer
*/
function mysqldatetime_to_timestamp($datetime = "")
{
  // function is only applicable for valid MySQL DATETIME (19 characters) and DATE (10 characters)
  $l = strlen($datetime);
    if(!($l == 10 || $l == 19))
    {
      return false;
     }

    //
    $date = $datetime;
    $hours = 0;
    $minutes = 0;
    $seconds = 0;

    // DATETIME only
    if($l == 19)
    {
      list($date, $time) = explode(" ", $datetime);
      list($hours, $minutes, $seconds) = explode(":", $time);
    }

    list($year, $month, $day) = explode("-", $date);

    return mktime($hours, $minutes, $seconds, $month, $day, $year);
}


Messages In This Thread
relative dates? - by El Forum - 12-03-2007, 03:30 PM
relative dates? - by El Forum - 12-03-2007, 04:15 PM
relative dates? - by El Forum - 12-03-2007, 04:16 PM
relative dates? - by El Forum - 12-03-2007, 04:29 PM
relative dates? - by El Forum - 12-03-2007, 05:28 PM
relative dates? - by El Forum - 12-03-2007, 06:04 PM
relative dates? - by El Forum - 12-03-2007, 07:00 PM
relative dates? - by El Forum - 12-04-2007, 09:01 PM
relative dates? - by El Forum - 12-04-2007, 09:37 PM
relative dates? - by El Forum - 12-05-2007, 02:50 AM
relative dates? - by El Forum - 12-05-2007, 03:27 AM
relative dates? - by El Forum - 12-05-2007, 03:57 AM
relative dates? - by El Forum - 12-05-2007, 03:58 AM
relative dates? - by El Forum - 12-05-2007, 06:41 AM
relative dates? - by El Forum - 12-05-2007, 10:19 AM
relative dates? - by El Forum - 01-11-2008, 02:52 PM
relative dates? - by El Forum - 01-12-2008, 03:28 AM



Theme © iAndrew 2016 - Forum software by © MyBB