Skip to content

Instantly share code, notes, and snippets.

@nishinoshake
Last active May 29, 2016 04:22
Show Gist options
  • Save nishinoshake/52cf4fc320ec743a2ee9 to your computer and use it in GitHub Desktop.
Save nishinoshake/52cf4fc320ec743a2ee9 to your computer and use it in GitHub Desktop.
PHPで新しいかの判定
function judgeNew($postedDate) {
$past = 7; // 1 week
if ( strtotime($postedDate) >= strtotime('-' . $past . ' day') ) {
return true;
} else {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment