3v4l.org

run code in 300+ PHP versions simultaneously
<?php class dateCalculation { public $current_date; function __construct($date=null) { if(!emtpy($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); } } $dateCalculation = new dateCalculation(date('Y-m-d H:i:s')); echo $dateCalculation->validNextDrawDate();
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught Error: Call to undefined function emtpy() in /in/UtO4V:9 Stack trace: #0 /in/UtO4V(32): dateCalculation->__construct('2015-09-18 19:4...') #1 {main} thrown in /in/UtO4V on line 9
Process exited with code 255.

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
47.79 ms | 401 KiB | 8 Q