Gen Synthetic Timestamp [php]

// Calculate time to nearest 15 minutes
$roundness = 60 * 15;
$rounded_now = (round(time() / $roundness) * $roundness);
$sql = “SELECT author, title, body FROM articles WHERE publish_date <= $rounded_now”;