Skip to content

Instantly share code, notes, and snippets.

@GDmac
Created May 3, 2013 10:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GDmac/5508477 to your computer and use it in GitHub Desktop.
Save GDmac/5508477 to your computer and use it in GitHub Desktop.
<?php
echo '<PRE>';
$t = "friday 10am";
$x = strtotime($t);
if ( $x < time() )
{
$x = strtotime('next ' . $t);
}
var_dump( date('r', $x) );
echo '<HR>Done';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment