Jump to content

[SOLVED] time() function help please


elmas156

Recommended Posts

I'm trying to get a unix timestamp of a previous date and the current date so that I can compare them in a script that I'm writing.  I've tried the following code in several variations but the output for the $now and $then variables are always the same, which is the current unix timestamp.  What am I doing wrong?

 

Here's my code:

<?php
$apptdate="2008-09-20";

$now = time();
$then = time("$apptdate");

echo "$now<br>";
echo "$then";
?>

Link to comment
https://forums.phpfreaks.com/topic/125648-solved-time-function-help-please/
Share on other sites

that works for $then but now how do I get the timestamp for the current date at exactly midnight?  I need this so I can  do something like this:

 

<?php

if ($then == $now - 7776000) { // if $then is 90 days ago

send a reminder email

}

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.