3v4l.org

run code in 300+ PHP versions simultaneously
<?php class BusinessDaysCalculator { const MONDAY = 1; const TUESDAY = 2; const WEDNESDAY = 3; const THURSDAY = 4; const FRIDAY = 5; const SATURDAY = 6; const SUNDAY = 7; /** * @param DateTime $startDate Date to start calculations from * @param DateTime[] $holidays Array of holidays, holidays are no conisdered business days. * @param int[] $nonBusinessDays Array of days of the week which are not business days. */ public function __construct(DateTime $startDate, array $holidays, array $nonBusinessDays) { $this->date = $startDate; $this->holidays = $holidays; $this->nonBusinessDays = $nonBusinessDays; } public function addBusinessDays($howManyDays) { $i = 0; while ($i < $howManyDays) { $this->date->modify("+1 day"); if ($this->isBusinessDay($this->date)) { $i++; } } } public function getDate() { return $this->date; } private function isBusinessDay(DateTime $date) { if (in_array((int)$date->format('N'), $this->nonBusinessDays)) { return false; //Date is a nonBusinessDay. } foreach ($this->holidays as $day) { if ($date->format('d-m-Y') == $day->format('d-m-Y')) { return false; //Date is a holiday. } } return true; //Date is a business day. } } $calculator = new BusinessDaysCalculator( new DateTime(), // Today [new DateTime("2014-06-01"), new DateTime("2014-06-02")], [BusinessDaysCalculator::SATURDAY, BusinessDaysCalculator::FRIDAY] ); $calculator->addBusinessDays(4); // Add three business days var_dump($calculator->getDate());
Output for 8.3.6
Deprecated: Creation of dynamic property BusinessDaysCalculator::$date is deprecated in /in/Gjh7a on line 19 Deprecated: Creation of dynamic property BusinessDaysCalculator::$holidays is deprecated in /in/Gjh7a on line 20 Deprecated: Creation of dynamic property BusinessDaysCalculator::$nonBusinessDays is deprecated in /in/Gjh7a on line 21 object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.007652" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 Deprecated: Creation of dynamic property BusinessDaysCalculator::$date is deprecated in /in/Gjh7a on line 19 Deprecated: Creation of dynamic property BusinessDaysCalculator::$holidays is deprecated in /in/Gjh7a on line 20 Deprecated: Creation of dynamic property BusinessDaysCalculator::$nonBusinessDays is deprecated in /in/Gjh7a on line 21 object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.010087" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.3.4
Deprecated: Creation of dynamic property BusinessDaysCalculator::$date is deprecated in /in/Gjh7a on line 19 Deprecated: Creation of dynamic property BusinessDaysCalculator::$holidays is deprecated in /in/Gjh7a on line 20 Deprecated: Creation of dynamic property BusinessDaysCalculator::$nonBusinessDays is deprecated in /in/Gjh7a on line 21 object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.007707" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.3.3
Deprecated: Creation of dynamic property BusinessDaysCalculator::$date is deprecated in /in/Gjh7a on line 19 Deprecated: Creation of dynamic property BusinessDaysCalculator::$holidays is deprecated in /in/Gjh7a on line 20 Deprecated: Creation of dynamic property BusinessDaysCalculator::$nonBusinessDays is deprecated in /in/Gjh7a on line 21 object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.007033" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.3.2
Deprecated: Creation of dynamic property BusinessDaysCalculator::$date is deprecated in /in/Gjh7a on line 19 Deprecated: Creation of dynamic property BusinessDaysCalculator::$holidays is deprecated in /in/Gjh7a on line 20 Deprecated: Creation of dynamic property BusinessDaysCalculator::$nonBusinessDays is deprecated in /in/Gjh7a on line 21 object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003821" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.3.1
Deprecated: Creation of dynamic property BusinessDaysCalculator::$date is deprecated in /in/Gjh7a on line 19 Deprecated: Creation of dynamic property BusinessDaysCalculator::$holidays is deprecated in /in/Gjh7a on line 20 Deprecated: Creation of dynamic property BusinessDaysCalculator::$nonBusinessDays is deprecated in /in/Gjh7a on line 21 object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.004024" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.3.0
Deprecated: Creation of dynamic property BusinessDaysCalculator::$date is deprecated in /in/Gjh7a on line 19 Deprecated: Creation of dynamic property BusinessDaysCalculator::$holidays is deprecated in /in/Gjh7a on line 20 Deprecated: Creation of dynamic property BusinessDaysCalculator::$nonBusinessDays is deprecated in /in/Gjh7a on line 21 object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.004040" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.2.18
Deprecated: Creation of dynamic property BusinessDaysCalculator::$date is deprecated in /in/Gjh7a on line 19 Deprecated: Creation of dynamic property BusinessDaysCalculator::$holidays is deprecated in /in/Gjh7a on line 20 Deprecated: Creation of dynamic property BusinessDaysCalculator::$nonBusinessDays is deprecated in /in/Gjh7a on line 21 object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.010353" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.2.17
Deprecated: Creation of dynamic property BusinessDaysCalculator::$date is deprecated in /in/Gjh7a on line 19 Deprecated: Creation of dynamic property BusinessDaysCalculator::$holidays is deprecated in /in/Gjh7a on line 20 Deprecated: Creation of dynamic property BusinessDaysCalculator::$nonBusinessDays is deprecated in /in/Gjh7a on line 21 object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.010448" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.2.16
Deprecated: Creation of dynamic property BusinessDaysCalculator::$date is deprecated in /in/Gjh7a on line 19 Deprecated: Creation of dynamic property BusinessDaysCalculator::$holidays is deprecated in /in/Gjh7a on line 20 Deprecated: Creation of dynamic property BusinessDaysCalculator::$nonBusinessDays is deprecated in /in/Gjh7a on line 21 object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.006864" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.2.15
Deprecated: Creation of dynamic property BusinessDaysCalculator::$date is deprecated in /in/Gjh7a on line 19 Deprecated: Creation of dynamic property BusinessDaysCalculator::$holidays is deprecated in /in/Gjh7a on line 20 Deprecated: Creation of dynamic property BusinessDaysCalculator::$nonBusinessDays is deprecated in /in/Gjh7a on line 21 object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003908" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.2.14
Deprecated: Creation of dynamic property BusinessDaysCalculator::$date is deprecated in /in/Gjh7a on line 19 Deprecated: Creation of dynamic property BusinessDaysCalculator::$holidays is deprecated in /in/Gjh7a on line 20 Deprecated: Creation of dynamic property BusinessDaysCalculator::$nonBusinessDays is deprecated in /in/Gjh7a on line 21 object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003879" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.2.13
Deprecated: Creation of dynamic property BusinessDaysCalculator::$date is deprecated in /in/Gjh7a on line 19 Deprecated: Creation of dynamic property BusinessDaysCalculator::$holidays is deprecated in /in/Gjh7a on line 20 Deprecated: Creation of dynamic property BusinessDaysCalculator::$nonBusinessDays is deprecated in /in/Gjh7a on line 21 object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003615" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.2.12
Deprecated: Creation of dynamic property BusinessDaysCalculator::$date is deprecated in /in/Gjh7a on line 19 Deprecated: Creation of dynamic property BusinessDaysCalculator::$holidays is deprecated in /in/Gjh7a on line 20 Deprecated: Creation of dynamic property BusinessDaysCalculator::$nonBusinessDays is deprecated in /in/Gjh7a on line 21 object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003785" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.2.11
Deprecated: Creation of dynamic property BusinessDaysCalculator::$date is deprecated in /in/Gjh7a on line 19 Deprecated: Creation of dynamic property BusinessDaysCalculator::$holidays is deprecated in /in/Gjh7a on line 20 Deprecated: Creation of dynamic property BusinessDaysCalculator::$nonBusinessDays is deprecated in /in/Gjh7a on line 21 object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.004508" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.2.10
Deprecated: Creation of dynamic property BusinessDaysCalculator::$date is deprecated in /in/Gjh7a on line 19 Deprecated: Creation of dynamic property BusinessDaysCalculator::$holidays is deprecated in /in/Gjh7a on line 20 Deprecated: Creation of dynamic property BusinessDaysCalculator::$nonBusinessDays is deprecated in /in/Gjh7a on line 21 object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.005429" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.2.9
Deprecated: Creation of dynamic property BusinessDaysCalculator::$date is deprecated in /in/Gjh7a on line 19 Deprecated: Creation of dynamic property BusinessDaysCalculator::$holidays is deprecated in /in/Gjh7a on line 20 Deprecated: Creation of dynamic property BusinessDaysCalculator::$nonBusinessDays is deprecated in /in/Gjh7a on line 21 object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003939" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.2.8
Deprecated: Creation of dynamic property BusinessDaysCalculator::$date is deprecated in /in/Gjh7a on line 19 Deprecated: Creation of dynamic property BusinessDaysCalculator::$holidays is deprecated in /in/Gjh7a on line 20 Deprecated: Creation of dynamic property BusinessDaysCalculator::$nonBusinessDays is deprecated in /in/Gjh7a on line 21 object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003824" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.2.7
Deprecated: Creation of dynamic property BusinessDaysCalculator::$date is deprecated in /in/Gjh7a on line 19 Deprecated: Creation of dynamic property BusinessDaysCalculator::$holidays is deprecated in /in/Gjh7a on line 20 Deprecated: Creation of dynamic property BusinessDaysCalculator::$nonBusinessDays is deprecated in /in/Gjh7a on line 21 object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.004044" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.2.6
Deprecated: Creation of dynamic property BusinessDaysCalculator::$date is deprecated in /in/Gjh7a on line 19 Deprecated: Creation of dynamic property BusinessDaysCalculator::$holidays is deprecated in /in/Gjh7a on line 20 Deprecated: Creation of dynamic property BusinessDaysCalculator::$nonBusinessDays is deprecated in /in/Gjh7a on line 21 object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003854" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.2.5
Deprecated: Creation of dynamic property BusinessDaysCalculator::$date is deprecated in /in/Gjh7a on line 19 Deprecated: Creation of dynamic property BusinessDaysCalculator::$holidays is deprecated in /in/Gjh7a on line 20 Deprecated: Creation of dynamic property BusinessDaysCalculator::$nonBusinessDays is deprecated in /in/Gjh7a on line 21 object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.004110" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.2.4
Deprecated: Creation of dynamic property BusinessDaysCalculator::$date is deprecated in /in/Gjh7a on line 19 Deprecated: Creation of dynamic property BusinessDaysCalculator::$holidays is deprecated in /in/Gjh7a on line 20 Deprecated: Creation of dynamic property BusinessDaysCalculator::$nonBusinessDays is deprecated in /in/Gjh7a on line 21 object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003859" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.2.3
Deprecated: Creation of dynamic property BusinessDaysCalculator::$date is deprecated in /in/Gjh7a on line 19 Deprecated: Creation of dynamic property BusinessDaysCalculator::$holidays is deprecated in /in/Gjh7a on line 20 Deprecated: Creation of dynamic property BusinessDaysCalculator::$nonBusinessDays is deprecated in /in/Gjh7a on line 21 object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003959" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.2.2
Deprecated: Creation of dynamic property BusinessDaysCalculator::$date is deprecated in /in/Gjh7a on line 19 Deprecated: Creation of dynamic property BusinessDaysCalculator::$holidays is deprecated in /in/Gjh7a on line 20 Deprecated: Creation of dynamic property BusinessDaysCalculator::$nonBusinessDays is deprecated in /in/Gjh7a on line 21 object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003602" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.2.1
Deprecated: Creation of dynamic property BusinessDaysCalculator::$date is deprecated in /in/Gjh7a on line 19 Deprecated: Creation of dynamic property BusinessDaysCalculator::$holidays is deprecated in /in/Gjh7a on line 20 Deprecated: Creation of dynamic property BusinessDaysCalculator::$nonBusinessDays is deprecated in /in/Gjh7a on line 21 object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003851" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.2.0
Deprecated: Creation of dynamic property BusinessDaysCalculator::$date is deprecated in /in/Gjh7a on line 19 Deprecated: Creation of dynamic property BusinessDaysCalculator::$holidays is deprecated in /in/Gjh7a on line 20 Deprecated: Creation of dynamic property BusinessDaysCalculator::$nonBusinessDays is deprecated in /in/Gjh7a on line 21 object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003734" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.1.28
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.006813" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.1.27
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.004003" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.1.26
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.004009" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.1.25
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003490" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.1.24
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.006759" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.1.23
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.005060" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.1.22
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003701" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.1.21
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003783" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.1.20
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.011267" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.1.19
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003826" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.1.18
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003823" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.1.17
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003543" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.1.16
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003685" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.1.15
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003762" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.1.14
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003555" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.1.13
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003649" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.1.12
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.005243" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.1.11
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003668" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.1.10
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003666" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.1.9
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003816" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.1.8
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003886" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.1.7
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003662" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.1.6
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003713" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.1.5
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003879" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.1.4
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.004004" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.1.3
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003671" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.1.2
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003682" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.1.1
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003643" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.1.0
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003603" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.0.30
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003516" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.0.29
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003510" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.0.28
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003619" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.0.27
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003498" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.0.26
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003494" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.0.25
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003392" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.0.24
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003549" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.0.23
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003368" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.0.22
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003749" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.0.21
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003295" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.0.20
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003074" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.0.19
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.004008" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.0.18
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003750" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.0.17
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003684" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.0.16
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.005418" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.0.15
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003807" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.0.14
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003424" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.0.13
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 20:00:18.002187" ["timezone_type"]=> int(3) ["timezone"]=> string(3) "UTC" }
Output for 8.0.12
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003700" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.0.11
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003560" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.0.10
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003695" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.0.9
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003537" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.0.8
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.008248" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.0.7
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003873" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.0.6
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.004100" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.0.5
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003552" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.0.3
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.011048" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.0.2
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.009181" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.0.1
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003436" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 8.0.0
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.015132" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.4.33
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.002897" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.4.32
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003286" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.4.30
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003245" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.4.29
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.004724" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.4.28
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003267" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.4.27
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003205" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.4.26
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 20:00:18.002175" ["timezone_type"]=> int(3) ["timezone"]=> string(3) "UTC" }
Output for 7.4.25
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003428" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.4.24
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003240" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.4.23
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003201" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.4.22
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.013007" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.4.21
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.008546" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.4.20
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003406" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.4.16
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.008289" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.4.15
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.008900" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.4.14
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.011579" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.4.13
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.009663" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.4.12
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.008573" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.4.11
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.008959" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.4.10
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.012554" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.4.9
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.008974" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.4.8
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.011449" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.4.7
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.007972" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.4.6
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000401" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.4.5
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003979" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.4.4
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.008456" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.4.3
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.008852" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.4.0
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000274" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.3.33
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 20:00:18.002067" ["timezone_type"]=> int(3) ["timezone"]=> string(3) "UTC" }
Output for 7.3.32
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 20:00:18.002365" ["timezone_type"]=> int(3) ["timezone"]=> string(3) "UTC" }
Output for 7.3.31
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003256" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.3.30
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003804" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.3.29
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.009930" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.3.28
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.008453" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.3.27
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.009623" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.3.26
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.017247" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.3.25
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.009275" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.3.24
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.010679" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.3.23
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.008700" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.3.21
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.008242" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.3.20
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.008393" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.3.19
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.008583" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.3.18
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.008526" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.3.17
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.011463" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.3.16
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.008535" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.3.12
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000285" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.3.11
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000284" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.2.2, 7.3.10
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000263" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.3.9
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000370" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.3.5, 7.3.8
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000283" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.3.7
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000189" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.3.6
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000356" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.3.4
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000203" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.3.3
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000256" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.3.2
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000207" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.3.1
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000176" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.3.0
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000254" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.2.33
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.008857" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.2.32
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.011556" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.2.31
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.009077" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.2.30
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.009809" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.2.29
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.014168" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.2.25
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000305" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.2.24
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000319" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.2.23
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000389" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.2.22
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000197" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.2.21
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000212" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.2.20
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000185" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.2.19
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.009844" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.2.18
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000201" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.2.17
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000281" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.2.1, 7.2.16
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000269" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.2.15
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000208" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.2.14
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.013281" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.2.4, 7.2.10, 7.2.13
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000168" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.2.12
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000224" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.2.8, 7.2.11
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000172" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.2.9
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000244" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.2.7
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000166" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.2.6
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000177" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.2.5
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000241" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.2.3
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000300" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.2.0
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000251" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.1.33
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000170" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.1.32
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000302" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.1.31
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000200" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.1.30
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000198" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.1.29
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000225" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.1.28
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000473" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.1.27
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000316" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.1.26
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000238" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.1.25
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000164" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.1.20
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003548" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.1.7
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.003105" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.1.6
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.036332" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.1.5
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.028477" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.1.4
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.017481" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.0.0 - 7.0.20, 7.1.3
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.000000" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.1.2
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.023462" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.1.1
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.006130" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }
Output for 7.1.0
object(DateTime)#2 (3) { ["date"]=> string(26) "2017-07-05 22:00:18.007010" ["timezone_type"]=> int(3) ["timezone"]=> string(16) "Europe/Amsterdam" }

preferences:
240.62 ms | 401 KiB | 218 Q