3v4l.org

run code in 300+ PHP versions simultaneously
<?php $currentDate = date('m/d/Y'); $start = strtotime('01-12-14'); $end = strtotime('02-12-14'); $timestamp = strtotime($currentDate); if($timestamp >= $start && $timestamp <= $end) { echo $currentDate; echo "The date $currentDate is within our date range\n"; } else { echo $timestamp; echo $start; echo $end; echo "The date $currentDate is NOT within our date range\n"; }

preferences:
45.99 ms | 402 KiB | 5 Q