3v4l.org

run code in 300+ PHP versions simultaneously
<?php class dateCalculation { public $current_date; function __construct($date=null) { if(!empty($date)) { $this->current_date = $date; } else { $this->current_date = date('Y-m-d H:i:s'); } } public function validNextDrawDate() { $next_valid_date_time_1 = strtotime('this wednesday 20:00'); $next_valid_date_time_2 = strtotime('this saturday 20:00'); if(strtotime($this->current_date) < $next_valid_date_time_1) { // Past wednesday 20:00 of this week. $appointment_date_time = $next_valid_date_time_1; } else { $appointment_date_time = $next_valid_date_time_2; } echo date('Y-m-d H:i', $appointment_date_time); } } echo date('Y-m-d H:i:s'); $dateCalculation = new dateCalculation(date('Y-m-d H:i:s')); echo $dateCalculation->validNextDrawDate();
Output for 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.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.2, 7.3.4 - 7.3.31, 7.4.0 - 7.4.33, 8.0.0 - 8.0.12, 8.0.14 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.7
2015-09-18 19:42:002015-09-23 20:00
Output for 7.3.32 - 7.3.33, 8.0.13
2015-09-18 17:42:002015-09-23 20:00
Output for 7.3.3
2015-09-18 19:42:012015-09-23 20:00

preferences:
229.29 ms | 401 KiB | 316 Q