3v4l.org

run code in 300+ PHP versions simultaneously
<?php $dates = array ('24-12-2013', '25-12-2013', '26-12-2014', '27-12-2013'); $start = strtotime('25-12-2013'); $end = strtotime('26-12-2013'); foreach($dates AS $date) { $timestamp = strtotime($date); if($timestamp >= $start && $timestamp <= $end) { echo "The date $date is within our date range\n"; } else { echo "The date $date is NOT within our date range\n"; } }
Output for 4.3.0 - 4.3.11, 4.4.0 - 4.4.9, 5.0.0 - 5.0.5, 5.1.3 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.20, 7.2.5 - 7.2.33, 7.3.12 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.27, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
The date 24-12-2013 is NOT within our date range The date 25-12-2013 is within our date range The date 26-12-2014 is NOT within our date range The date 27-12-2013 is NOT within our date range
Output for 5.1.0 - 5.1.2
The date 24-12-2013 is within our date range The date 25-12-2013 is within our date range The date 26-12-2014 is within our date range The date 27-12-2013 is within our date range

preferences:
252.4 ms | 401 KiB | 354 Q