3v4l.org

run code in 300+ PHP versions simultaneously
<?php function is_today() { $date_array = array( '28-10-2018', '4-11-2018', '25-11-2018', '2-12-2018', '16-12-2018', '23-12-2018', '30-12-2018', '27-01-2019', '24-02-2019', '31-03-2019', '14-04-2019', '28-04-2019', '26-05-2019', '30-06-2019', '28-07-2019', '25-08-2019', '29-09-2019', '27-10-2019', '24-11-2019', '15-12-2019', '22-12-2019', '29-12-2019' ); $now = date("Y-m-d"); $now_datetime = new DateTime($now); // foreach($date_array as $date) { $match_date = new DateTime($date); var_dump($now_datetime); $interval = $now->diff($match_date); // if($interval->days === 0) { // return true; // break; // } else { // return false; // } } } var_dump(is_today());
Output for git.master, git.master_jit, rfc.property-hooks
object(DateTime)#1 (3) { ["date"]=> string(26) "2018-10-28 00:00:00.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" } Fatal error: Uncaught Error: Call to a member function diff() on string in /in/Tic7D:34 Stack trace: #0 /in/Tic7D(44): is_today() #1 {main} thrown in /in/Tic7D on line 34
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:
38.25 ms | 401 KiB | 8 Q