Skip to content

Instantly share code, notes, and snippets.

@jonathanselander
Created February 23, 2012 16:07
Show Gist options
  • Save jonathanselander/1893453 to your computer and use it in GitHub Desktop.
Save jonathanselander/1893453 to your computer and use it in GitHub Desktop.
/**
* Simple sql format date
*
* @param string $format
* @return string
*/
function now($dayOnly=false)
{
return date($dayOnly ? 'Y-m-d' : 'Y-m-d H:i:s');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment