3v4l.org

run code in 300+ PHP versions simultaneously
<?php function dumpMappedRow($mappedRow) { var_dump([ 'created' => $mappedRow['created']->format(DateTime::ISO8601), 'modified' => $mappedRow['modified']->format(DateTime::ISO8601) ]); } function mutableDemo() { $date = DateTime::createFromFormat("Y-m-d", "2015-11-24"); $mappedRow['created'] = $date; $mappedRow['modified'] = $date; dumpMappedRow($mappedRow); $mappedRow['modified']->setDate("2015", "11", "15"); dumpMappedRow($mappedRow); if ($mappedRow['created']->getTimestamp() === $mappedRow['modified']->getTimestamp()) { echo "\nCreated and Modified are set to the same value."; } } function immutableDemo() { $date = DateTimeImmutable::createFromFormat("Y-m-d", "2015-11-24"); $mappedRow['created'] = $date; $mappedRow['modified'] = $date; dumpMappedRow($mappedRow); $mappedRow['modified']->setDate("2015", "11", "15"); dumpMappedRow($mappedRow); if ($mappedRow['created']->getTimestamp() === $mappedRow['modified']->getTimestamp()) { echo "\nCreated and Modified are set to the same value."; } } mutableDemo(); echo "\n\n==========\n\n"; immutableDemo();
Output for 5.6.28, 7.0.20, 7.1.0 - 7.1.20, 7.2.0 - 7.2.33, 7.3.16 - 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
array(2) { ["created"]=> string(24) "2015-11-24T21:21:38+0100" ["modified"]=> string(24) "2015-11-24T21:21:38+0100" } array(2) { ["created"]=> string(24) "2015-11-15T21:21:38+0100" ["modified"]=> string(24) "2015-11-15T21:21:38+0100" } Created and Modified are set to the same value. ========== array(2) { ["created"]=> string(24) "2015-11-24T21:21:38+0100" ["modified"]=> string(24) "2015-11-24T21:21:38+0100" } array(2) { ["created"]=> string(24) "2015-11-24T21:21:38+0100" ["modified"]=> string(24) "2015-11-24T21:21:38+0100" } Created and Modified are set to the same value.
Output for 7.3.32 - 7.3.33, 8.0.13
array(2) { ["created"]=> string(24) "2015-11-24T19:21:38+0000" ["modified"]=> string(24) "2015-11-24T19:21:38+0000" } array(2) { ["created"]=> string(24) "2015-11-15T19:21:38+0000" ["modified"]=> string(24) "2015-11-15T19:21:38+0000" } Created and Modified are set to the same value. ========== array(2) { ["created"]=> string(24) "2015-11-24T19:21:38+0000" ["modified"]=> string(24) "2015-11-24T19:21:38+0000" } array(2) { ["created"]=> string(24) "2015-11-24T19:21:38+0000" ["modified"]=> string(24) "2015-11-24T19:21:38+0000" } Created and Modified are set to the same value.
Output for 7.0.6
array(2) { ["created"]=> string(24) "2015-11-24T13:30:36+0100" ["modified"]=> string(24) "2015-11-24T13:30:36+0100" } array(2) { ["created"]=> string(24) "2015-11-15T13:30:36+0100" ["modified"]=> string(24) "2015-11-15T13:30:36+0100" } Created and Modified are set to the same value. ========== array(2) { ["created"]=> string(24) "2015-11-24T13:30:36+0100" ["modified"]=> string(24) "2015-11-24T13:30:36+0100" } array(2) { ["created"]=> string(24) "2015-11-24T13:30:36+0100" ["modified"]=> string(24) "2015-11-24T13:30:36+0100" } Created and Modified are set to the same value.
Output for 7.0.5
array(2) { ["created"]=> string(24) "2015-11-24T02:11:49+0100" ["modified"]=> string(24) "2015-11-24T02:11:49+0100" } array(2) { ["created"]=> string(24) "2015-11-15T02:11:49+0100" ["modified"]=> string(24) "2015-11-15T02:11:49+0100" } Created and Modified are set to the same value. ========== array(2) { ["created"]=> string(24) "2015-11-24T02:11:49+0100" ["modified"]=> string(24) "2015-11-24T02:11:49+0100" } array(2) { ["created"]=> string(24) "2015-11-24T02:11:49+0100" ["modified"]=> string(24) "2015-11-24T02:11:49+0100" } Created and Modified are set to the same value.
Output for 7.0.4
array(2) { ["created"]=> string(24) "2015-11-24T13:00:10+0100" ["modified"]=> string(24) "2015-11-24T13:00:10+0100" } array(2) { ["created"]=> string(24) "2015-11-15T13:00:10+0100" ["modified"]=> string(24) "2015-11-15T13:00:10+0100" } Created and Modified are set to the same value. ========== array(2) { ["created"]=> string(24) "2015-11-24T13:00:10+0100" ["modified"]=> string(24) "2015-11-24T13:00:10+0100" } array(2) { ["created"]=> string(24) "2015-11-24T13:00:10+0100" ["modified"]=> string(24) "2015-11-24T13:00:10+0100" } Created and Modified are set to the same value.
Output for 7.0.3
array(2) { ["created"]=> string(24) "2015-11-24T13:51:08+0100" ["modified"]=> string(24) "2015-11-24T13:51:08+0100" } array(2) { ["created"]=> string(24) "2015-11-15T13:51:08+0100" ["modified"]=> string(24) "2015-11-15T13:51:08+0100" } Created and Modified are set to the same value. ========== array(2) { ["created"]=> string(24) "2015-11-24T13:51:08+0100" ["modified"]=> string(24) "2015-11-24T13:51:08+0100" } array(2) { ["created"]=> string(24) "2015-11-24T13:51:08+0100" ["modified"]=> string(24) "2015-11-24T13:51:08+0100" } Created and Modified are set to the same value.
Output for 7.0.2
array(2) { ["created"]=> string(24) "2015-11-24T19:45:39+0100" ["modified"]=> string(24) "2015-11-24T19:45:39+0100" } array(2) { ["created"]=> string(24) "2015-11-15T19:45:39+0100" ["modified"]=> string(24) "2015-11-15T19:45:39+0100" } Created and Modified are set to the same value. ========== array(2) { ["created"]=> string(24) "2015-11-24T19:45:39+0100" ["modified"]=> string(24) "2015-11-24T19:45:39+0100" } array(2) { ["created"]=> string(24) "2015-11-24T19:45:39+0100" ["modified"]=> string(24) "2015-11-24T19:45:39+0100" } Created and Modified are set to the same value.
Output for 7.0.1
array(2) { ["created"]=> string(24) "2015-11-24T23:59:29+0100" ["modified"]=> string(24) "2015-11-24T23:59:29+0100" } array(2) { ["created"]=> string(24) "2015-11-15T23:59:29+0100" ["modified"]=> string(24) "2015-11-15T23:59:29+0100" } Created and Modified are set to the same value. ========== array(2) { ["created"]=> string(24) "2015-11-24T23:59:29+0100" ["modified"]=> string(24) "2015-11-24T23:59:29+0100" } array(2) { ["created"]=> string(24) "2015-11-24T23:59:29+0100" ["modified"]=> string(24) "2015-11-24T23:59:29+0100" } Created and Modified are set to the same value.
Output for 7.0.0
array(2) { ["created"]=> string(24) "2015-11-24T01:36:29+0100" ["modified"]=> string(24) "2015-11-24T01:36:29+0100" } array(2) { ["created"]=> string(24) "2015-11-15T01:36:29+0100" ["modified"]=> string(24) "2015-11-15T01:36:29+0100" } Created and Modified are set to the same value. ========== array(2) { ["created"]=> string(24) "2015-11-24T01:36:29+0100" ["modified"]=> string(24) "2015-11-24T01:36:29+0100" } array(2) { ["created"]=> string(24) "2015-11-24T01:36:29+0100" ["modified"]=> string(24) "2015-11-24T01:36:29+0100" } Created and Modified are set to the same value.
Output for 5.6.21
array(2) { ["created"]=> string(24) "2015-11-24T08:41:42+0100" ["modified"]=> string(24) "2015-11-24T08:41:42+0100" } array(2) { ["created"]=> string(24) "2015-11-15T08:41:42+0100" ["modified"]=> string(24) "2015-11-15T08:41:42+0100" } Created and Modified are set to the same value. ========== array(2) { ["created"]=> string(24) "2015-11-24T08:41:42+0100" ["modified"]=> string(24) "2015-11-24T08:41:42+0100" } array(2) { ["created"]=> string(24) "2015-11-24T08:41:42+0100" ["modified"]=> string(24) "2015-11-24T08:41:42+0100" } Created and Modified are set to the same value.
Output for 5.6.20
array(2) { ["created"]=> string(24) "2015-11-24T01:06:30+0100" ["modified"]=> string(24) "2015-11-24T01:06:30+0100" } array(2) { ["created"]=> string(24) "2015-11-15T01:06:30+0100" ["modified"]=> string(24) "2015-11-15T01:06:30+0100" } Created and Modified are set to the same value. ========== array(2) { ["created"]=> string(24) "2015-11-24T01:06:30+0100" ["modified"]=> string(24) "2015-11-24T01:06:30+0100" } array(2) { ["created"]=> string(24) "2015-11-24T01:06:30+0100" ["modified"]=> string(24) "2015-11-24T01:06:30+0100" } Created and Modified are set to the same value.
Output for 5.6.19
array(2) { ["created"]=> string(24) "2015-11-24T21:04:59+0100" ["modified"]=> string(24) "2015-11-24T21:04:59+0100" } array(2) { ["created"]=> string(24) "2015-11-15T21:04:59+0100" ["modified"]=> string(24) "2015-11-15T21:04:59+0100" } Created and Modified are set to the same value. ========== array(2) { ["created"]=> string(24) "2015-11-24T21:04:59+0100" ["modified"]=> string(24) "2015-11-24T21:04:59+0100" } array(2) { ["created"]=> string(24) "2015-11-24T21:04:59+0100" ["modified"]=> string(24) "2015-11-24T21:04:59+0100" } Created and Modified are set to the same value.
Output for 5.6.18
array(2) { ["created"]=> string(24) "2015-11-24T05:47:23+0100" ["modified"]=> string(24) "2015-11-24T05:47:23+0100" } array(2) { ["created"]=> string(24) "2015-11-15T05:47:23+0100" ["modified"]=> string(24) "2015-11-15T05:47:23+0100" } Created and Modified are set to the same value. ========== array(2) { ["created"]=> string(24) "2015-11-24T05:47:23+0100" ["modified"]=> string(24) "2015-11-24T05:47:23+0100" } array(2) { ["created"]=> string(24) "2015-11-24T05:47:23+0100" ["modified"]=> string(24) "2015-11-24T05:47:23+0100" } Created and Modified are set to the same value.
Output for 5.6.17
array(2) { ["created"]=> string(24) "2015-11-24T17:53:01+0100" ["modified"]=> string(24) "2015-11-24T17:53:01+0100" } array(2) { ["created"]=> string(24) "2015-11-15T17:53:01+0100" ["modified"]=> string(24) "2015-11-15T17:53:01+0100" } Created and Modified are set to the same value. ========== array(2) { ["created"]=> string(24) "2015-11-24T17:53:01+0100" ["modified"]=> string(24) "2015-11-24T17:53:01+0100" } array(2) { ["created"]=> string(24) "2015-11-24T17:53:01+0100" ["modified"]=> string(24) "2015-11-24T17:53:01+0100" } Created and Modified are set to the same value.
Output for 5.6.16
array(2) { ["created"]=> string(24) "2015-11-24T03:26:48+0100" ["modified"]=> string(24) "2015-11-24T03:26:48+0100" } array(2) { ["created"]=> string(24) "2015-11-15T03:26:48+0100" ["modified"]=> string(24) "2015-11-15T03:26:48+0100" } Created and Modified are set to the same value. ========== array(2) { ["created"]=> string(24) "2015-11-24T03:26:48+0100" ["modified"]=> string(24) "2015-11-24T03:26:48+0100" } array(2) { ["created"]=> string(24) "2015-11-24T03:26:48+0100" ["modified"]=> string(24) "2015-11-24T03:26:48+0100" } Created and Modified are set to the same value.
Output for 5.6.15
array(2) { ["created"]=> string(24) "2015-11-24T04:21:32+0100" ["modified"]=> string(24) "2015-11-24T04:21:32+0100" } array(2) { ["created"]=> string(24) "2015-11-15T04:21:32+0100" ["modified"]=> string(24) "2015-11-15T04:21:32+0100" } Created and Modified are set to the same value. ========== array(2) { ["created"]=> string(24) "2015-11-24T04:21:32+0100" ["modified"]=> string(24) "2015-11-24T04:21:32+0100" } array(2) { ["created"]=> string(24) "2015-11-24T04:21:32+0100" ["modified"]=> string(24) "2015-11-24T04:21:32+0100" } Created and Modified are set to the same value.
Output for 5.6.14
array(2) { ["created"]=> string(24) "2015-11-24T06:28:30+0100" ["modified"]=> string(24) "2015-11-24T06:28:30+0100" } array(2) { ["created"]=> string(24) "2015-11-15T06:28:30+0100" ["modified"]=> string(24) "2015-11-15T06:28:30+0100" } Created and Modified are set to the same value. ========== array(2) { ["created"]=> string(24) "2015-11-24T06:28:30+0100" ["modified"]=> string(24) "2015-11-24T06:28:30+0100" } array(2) { ["created"]=> string(24) "2015-11-24T06:28:30+0100" ["modified"]=> string(24) "2015-11-24T06:28:30+0100" } Created and Modified are set to the same value.
Output for 5.6.13
array(2) { ["created"]=> string(24) "2015-11-24T10:31:15+0100" ["modified"]=> string(24) "2015-11-24T10:31:15+0100" } array(2) { ["created"]=> string(24) "2015-11-15T10:31:15+0100" ["modified"]=> string(24) "2015-11-15T10:31:15+0100" } Created and Modified are set to the same value. ========== array(2) { ["created"]=> string(24) "2015-11-24T10:31:15+0100" ["modified"]=> string(24) "2015-11-24T10:31:15+0100" } array(2) { ["created"]=> string(24) "2015-11-24T10:31:15+0100" ["modified"]=> string(24) "2015-11-24T10:31:15+0100" } Created and Modified are set to the same value.
Output for 5.6.12
array(2) { ["created"]=> string(24) "2015-11-24T00:44:53+0100" ["modified"]=> string(24) "2015-11-24T00:44:53+0100" } array(2) { ["created"]=> string(24) "2015-11-15T00:44:53+0100" ["modified"]=> string(24) "2015-11-15T00:44:53+0100" } Created and Modified are set to the same value. ========== array(2) { ["created"]=> string(24) "2015-11-24T00:44:53+0100" ["modified"]=> string(24) "2015-11-24T00:44:53+0100" } array(2) { ["created"]=> string(24) "2015-11-24T00:44:53+0100" ["modified"]=> string(24) "2015-11-24T00:44:53+0100" } Created and Modified are set to the same value.
Output for 5.6.11
array(2) { ["created"]=> string(24) "2015-11-24T07:27:23+0100" ["modified"]=> string(24) "2015-11-24T07:27:23+0100" } array(2) { ["created"]=> string(24) "2015-11-15T07:27:23+0100" ["modified"]=> string(24) "2015-11-15T07:27:23+0100" } Created and Modified are set to the same value. ========== array(2) { ["created"]=> string(24) "2015-11-24T07:27:23+0100" ["modified"]=> string(24) "2015-11-24T07:27:23+0100" } array(2) { ["created"]=> string(24) "2015-11-24T07:27:23+0100" ["modified"]=> string(24) "2015-11-24T07:27:23+0100" } Created and Modified are set to the same value.
Output for 5.6.10
array(2) { ["created"]=> string(24) "2015-11-24T09:15:05+0100" ["modified"]=> string(24) "2015-11-24T09:15:05+0100" } array(2) { ["created"]=> string(24) "2015-11-15T09:15:05+0100" ["modified"]=> string(24) "2015-11-15T09:15:05+0100" } Created and Modified are set to the same value. ========== array(2) { ["created"]=> string(24) "2015-11-24T09:15:05+0100" ["modified"]=> string(24) "2015-11-24T09:15:05+0100" } array(2) { ["created"]=> string(24) "2015-11-24T09:15:05+0100" ["modified"]=> string(24) "2015-11-24T09:15:05+0100" } Created and Modified are set to the same value.
Output for 5.6.9
array(2) { ["created"]=> string(24) "2015-11-24T14:20:26+0100" ["modified"]=> string(24) "2015-11-24T14:20:26+0100" } array(2) { ["created"]=> string(24) "2015-11-15T14:20:26+0100" ["modified"]=> string(24) "2015-11-15T14:20:26+0100" } Created and Modified are set to the same value. ========== array(2) { ["created"]=> string(24) "2015-11-24T14:20:26+0100" ["modified"]=> string(24) "2015-11-24T14:20:26+0100" } array(2) { ["created"]=> string(24) "2015-11-24T14:20:26+0100" ["modified"]=> string(24) "2015-11-24T14:20:26+0100" } Created and Modified are set to the same value.
Output for 5.6.8
array(2) { ["created"]=> string(24) "2015-11-24T22:33:00+0100" ["modified"]=> string(24) "2015-11-24T22:33:00+0100" } array(2) { ["created"]=> string(24) "2015-11-15T22:33:00+0100" ["modified"]=> string(24) "2015-11-15T22:33:00+0100" } Created and Modified are set to the same value. ========== array(2) { ["created"]=> string(24) "2015-11-24T22:33:00+0100" ["modified"]=> string(24) "2015-11-24T22:33:00+0100" } array(2) { ["created"]=> string(24) "2015-11-24T22:33:00+0100" ["modified"]=> string(24) "2015-11-24T22:33:00+0100" } Created and Modified are set to the same value.
Output for 5.5.35
array(2) { ["created"]=> string(24) "2015-11-24T12:28:09+0100" ["modified"]=> string(24) "2015-11-24T12:28:09+0100" } array(2) { ["created"]=> string(24) "2015-11-15T12:28:09+0100" ["modified"]=> string(24) "2015-11-15T12:28:09+0100" } Created and Modified are set to the same value. ========== array(2) { ["created"]=> string(24) "2015-11-24T12:28:09+0100" ["modified"]=> string(24) "2015-11-24T12:28:09+0100" } array(2) { ["created"]=> string(24) "2015-11-24T12:28:09+0100" ["modified"]=> string(24) "2015-11-24T12:28:09+0100" } Created and Modified are set to the same value.
Output for 5.5.34
array(2) { ["created"]=> string(24) "2015-11-24T03:23:13+0100" ["modified"]=> string(24) "2015-11-24T03:23:13+0100" } array(2) { ["created"]=> string(24) "2015-11-15T03:23:13+0100" ["modified"]=> string(24) "2015-11-15T03:23:13+0100" } Created and Modified are set to the same value. ========== array(2) { ["created"]=> string(24) "2015-11-24T03:23:13+0100" ["modified"]=> string(24) "2015-11-24T03:23:13+0100" } array(2) { ["created"]=> string(24) "2015-11-24T03:23:13+0100" ["modified"]=> string(24) "2015-11-24T03:23:13+0100" } Created and Modified are set to the same value.
Output for 5.5.33
array(2) { ["created"]=> string(24) "2015-11-24T23:57:47+0100" ["modified"]=> string(24) "2015-11-24T23:57:47+0100" } array(2) { ["created"]=> string(24) "2015-11-15T23:57:47+0100" ["modified"]=> string(24) "2015-11-15T23:57:47+0100" } Created and Modified are set to the same value. ========== array(2) { ["created"]=> string(24) "2015-11-24T23:57:47+0100" ["modified"]=> string(24) "2015-11-24T23:57:47+0100" } array(2) { ["created"]=> string(24) "2015-11-24T23:57:47+0100" ["modified"]=> string(24) "2015-11-24T23:57:47+0100" } Created and Modified are set to the same value.
Output for 5.5.32
array(2) { ["created"]=> string(24) "2015-11-24T09:16:45+0100" ["modified"]=> string(24) "2015-11-24T09:16:45+0100" } array(2) { ["created"]=> string(24) "2015-11-15T09:16:45+0100" ["modified"]=> string(24) "2015-11-15T09:16:45+0100" } Created and Modified are set to the same value. ========== array(2) { ["created"]=> string(24) "2015-11-24T09:16:45+0100" ["modified"]=> string(24) "2015-11-24T09:16:45+0100" } array(2) { ["created"]=> string(24) "2015-11-24T09:16:45+0100" ["modified"]=> string(24) "2015-11-24T09:16:45+0100" } Created and Modified are set to the same value.
Output for 5.5.31
array(2) { ["created"]=> string(24) "2015-11-24T20:35:59+0100" ["modified"]=> string(24) "2015-11-24T20:35:59+0100" } array(2) { ["created"]=> string(24) "2015-11-15T20:35:59+0100" ["modified"]=> string(24) "2015-11-15T20:35:59+0100" } Created and Modified are set to the same value. ========== array(2) { ["created"]=> string(24) "2015-11-24T20:35:59+0100" ["modified"]=> string(24) "2015-11-24T20:35:59+0100" } array(2) { ["created"]=> string(24) "2015-11-24T20:35:59+0100" ["modified"]=> string(24) "2015-11-24T20:35:59+0100" } Created and Modified are set to the same value.
Output for 5.5.30
array(2) { ["created"]=> string(24) "2015-11-24T06:15:37+0100" ["modified"]=> string(24) "2015-11-24T06:15:37+0100" } array(2) { ["created"]=> string(24) "2015-11-15T06:15:37+0100" ["modified"]=> string(24) "2015-11-15T06:15:37+0100" } Created and Modified are set to the same value. ========== array(2) { ["created"]=> string(24) "2015-11-24T06:15:37+0100" ["modified"]=> string(24) "2015-11-24T06:15:37+0100" } array(2) { ["created"]=> string(24) "2015-11-24T06:15:37+0100" ["modified"]=> string(24) "2015-11-24T06:15:37+0100" } Created and Modified are set to the same value.
Output for 5.5.29
array(2) { ["created"]=> string(24) "2015-11-24T00:40:59+0100" ["modified"]=> string(24) "2015-11-24T00:40:59+0100" } array(2) { ["created"]=> string(24) "2015-11-15T00:40:59+0100" ["modified"]=> string(24) "2015-11-15T00:40:59+0100" } Created and Modified are set to the same value. ========== array(2) { ["created"]=> string(24) "2015-11-24T00:40:59+0100" ["modified"]=> string(24) "2015-11-24T00:40:59+0100" } array(2) { ["created"]=> string(24) "2015-11-24T00:40:59+0100" ["modified"]=> string(24) "2015-11-24T00:40:59+0100" } Created and Modified are set to the same value.
Output for 5.5.28
array(2) { ["created"]=> string(24) "2015-11-24T03:57:20+0100" ["modified"]=> string(24) "2015-11-24T03:57:20+0100" } array(2) { ["created"]=> string(24) "2015-11-15T03:57:20+0100" ["modified"]=> string(24) "2015-11-15T03:57:20+0100" } Created and Modified are set to the same value. ========== array(2) { ["created"]=> string(24) "2015-11-24T03:57:20+0100" ["modified"]=> string(24) "2015-11-24T03:57:20+0100" } array(2) { ["created"]=> string(24) "2015-11-24T03:57:20+0100" ["modified"]=> string(24) "2015-11-24T03:57:20+0100" } Created and Modified are set to the same value.
Output for 5.5.27
array(2) { ["created"]=> string(24) "2015-11-24T06:06:01+0100" ["modified"]=> string(24) "2015-11-24T06:06:01+0100" } array(2) { ["created"]=> string(24) "2015-11-15T06:06:01+0100" ["modified"]=> string(24) "2015-11-15T06:06:01+0100" } Created and Modified are set to the same value. ========== array(2) { ["created"]=> string(24) "2015-11-24T06:06:01+0100" ["modified"]=> string(24) "2015-11-24T06:06:01+0100" } array(2) { ["created"]=> string(24) "2015-11-24T06:06:01+0100" ["modified"]=> string(24) "2015-11-24T06:06:01+0100" } Created and Modified are set to the same value.
Output for 5.5.26
array(2) { ["created"]=> string(24) "2015-11-24T11:51:57+0100" ["modified"]=> string(24) "2015-11-24T11:51:57+0100" } array(2) { ["created"]=> string(24) "2015-11-15T11:51:57+0100" ["modified"]=> string(24) "2015-11-15T11:51:57+0100" } Created and Modified are set to the same value. ========== array(2) { ["created"]=> string(24) "2015-11-24T11:51:57+0100" ["modified"]=> string(24) "2015-11-24T11:51:57+0100" } array(2) { ["created"]=> string(24) "2015-11-24T11:51:57+0100" ["modified"]=> string(24) "2015-11-24T11:51:57+0100" } Created and Modified are set to the same value.
Output for 5.5.25
array(2) { ["created"]=> string(24) "2015-11-24T18:17:12+0100" ["modified"]=> string(24) "2015-11-24T18:17:12+0100" } array(2) { ["created"]=> string(24) "2015-11-15T18:17:12+0100" ["modified"]=> string(24) "2015-11-15T18:17:12+0100" } Created and Modified are set to the same value. ========== array(2) { ["created"]=> string(24) "2015-11-24T18:17:12+0100" ["modified"]=> string(24) "2015-11-24T18:17:12+0100" } array(2) { ["created"]=> string(24) "2015-11-24T18:17:12+0100" ["modified"]=> string(24) "2015-11-24T18:17:12+0100" } Created and Modified are set to the same value.
Output for 5.5.24
array(2) { ["created"]=> string(24) "2015-11-24T01:31:00+0100" ["modified"]=> string(24) "2015-11-24T01:31:00+0100" } array(2) { ["created"]=> string(24) "2015-11-15T01:31:00+0100" ["modified"]=> string(24) "2015-11-15T01:31:00+0100" } Created and Modified are set to the same value. ========== array(2) { ["created"]=> string(24) "2015-11-24T01:31:00+0100" ["modified"]=> string(24) "2015-11-24T01:31:00+0100" } array(2) { ["created"]=> string(24) "2015-11-24T01:31:00+0100" ["modified"]=> string(24) "2015-11-24T01:31:00+0100" } Created and Modified are set to the same value.
Output for 5.4.39 - 5.4.45
array(2) { ["created"]=> string(24) "2015-11-24T21:21:50+0100" ["modified"]=> string(24) "2015-11-24T21:21:50+0100" } array(2) { ["created"]=> string(24) "2015-11-15T21:21:50+0100" ["modified"]=> string(24) "2015-11-15T21:21:50+0100" } Created and Modified are set to the same value. ========== Fatal error: Class 'DateTimeImmutable' not found in /in/GGZtV on line 32
Process exited with code 255.
Output for 5.4.31 - 5.4.38
array(2) { ["created"]=> string(24) "2015-11-24T21:21:51+0100" ["modified"]=> string(24) "2015-11-24T21:21:51+0100" } array(2) { ["created"]=> string(24) "2015-11-15T21:21:51+0100" ["modified"]=> string(24) "2015-11-15T21:21:51+0100" } Created and Modified are set to the same value. ========== Fatal error: Class 'DateTimeImmutable' not found in /in/GGZtV on line 32
Process exited with code 255.
Output for 5.4.24 - 5.4.30
array(2) { ["created"]=> string(24) "2015-11-24T21:21:52+0100" ["modified"]=> string(24) "2015-11-24T21:21:52+0100" } array(2) { ["created"]=> string(24) "2015-11-15T21:21:52+0100" ["modified"]=> string(24) "2015-11-15T21:21:52+0100" } Created and Modified are set to the same value. ========== Fatal error: Class 'DateTimeImmutable' not found in /in/GGZtV on line 32
Process exited with code 255.
Output for 5.4.16 - 5.4.23
array(2) { ["created"]=> string(24) "2015-11-24T21:21:53+0100" ["modified"]=> string(24) "2015-11-24T21:21:53+0100" } array(2) { ["created"]=> string(24) "2015-11-15T21:21:53+0100" ["modified"]=> string(24) "2015-11-15T21:21:53+0100" } Created and Modified are set to the same value. ========== Fatal error: Class 'DateTimeImmutable' not found in /in/GGZtV on line 32
Process exited with code 255.
Output for 5.4.9 - 5.4.15
array(2) { ["created"]=> string(24) "2015-11-24T21:21:54+0100" ["modified"]=> string(24) "2015-11-24T21:21:54+0100" } array(2) { ["created"]=> string(24) "2015-11-15T21:21:54+0100" ["modified"]=> string(24) "2015-11-15T21:21:54+0100" } Created and Modified are set to the same value. ========== Fatal error: Class 'DateTimeImmutable' not found in /in/GGZtV on line 32
Process exited with code 255.
Output for 5.4.8
array(2) { ["created"]=> string(24) "2015-11-24T21:21:55+0100" ["modified"]=> string(24) "2015-11-24T21:21:55+0100" } array(2) { ["created"]=> string(24) "2015-11-15T21:21:55+0100" ["modified"]=> string(24) "2015-11-15T21:21:55+0100" } Created and Modified are set to the same value. ========== Fatal error: Class 'DateTimeImmutable' not found in /in/GGZtV on line 32
Process exited with code 255.
Output for 5.4.7
array(2) { ["created"]=> string(24) "2015-11-24T02:10:23+0100" ["modified"]=> string(24) "2015-11-24T02:10:23+0100" } array(2) { ["created"]=> string(24) "2015-11-15T02:10:23+0100" ["modified"]=> string(24) "2015-11-15T02:10:23+0100" } Created and Modified are set to the same value. ========== Fatal error: Class 'DateTimeImmutable' not found in /in/GGZtV on line 32
Process exited with code 255.
Output for 5.4.6
array(2) { ["created"]=> string(24) "2015-11-24T03:38:35+0100" ["modified"]=> string(24) "2015-11-24T03:38:35+0100" } array(2) { ["created"]=> string(24) "2015-11-15T03:38:35+0100" ["modified"]=> string(24) "2015-11-15T03:38:35+0100" } Created and Modified are set to the same value. ========== Fatal error: Class 'DateTimeImmutable' not found in /in/GGZtV on line 32
Process exited with code 255.
Output for 5.4.5
array(2) { ["created"]=> string(24) "2015-11-24T05:08:11+0100" ["modified"]=> string(24) "2015-11-24T05:08:11+0100" } array(2) { ["created"]=> string(24) "2015-11-15T05:08:11+0100" ["modified"]=> string(24) "2015-11-15T05:08:11+0100" } Created and Modified are set to the same value. ========== Fatal error: Class 'DateTimeImmutable' not found in /in/GGZtV on line 32
Process exited with code 255.
Output for 5.4.4
array(2) { ["created"]=> string(24) "2015-11-24T06:46:32+0100" ["modified"]=> string(24) "2015-11-24T06:46:32+0100" } array(2) { ["created"]=> string(24) "2015-11-15T06:46:32+0100" ["modified"]=> string(24) "2015-11-15T06:46:32+0100" } Created and Modified are set to the same value. ========== Fatal error: Class 'DateTimeImmutable' not found in /in/GGZtV on line 32
Process exited with code 255.
Output for 5.4.3
array(2) { ["created"]=> string(24) "2015-11-24T08:27:54+0100" ["modified"]=> string(24) "2015-11-24T08:27:54+0100" } array(2) { ["created"]=> string(24) "2015-11-15T08:27:54+0100" ["modified"]=> string(24) "2015-11-15T08:27:54+0100" } Created and Modified are set to the same value. ========== Fatal error: Class 'DateTimeImmutable' not found in /in/GGZtV on line 32
Process exited with code 255.
Output for 5.4.2
array(2) { ["created"]=> string(24) "2015-11-24T08:33:30+0100" ["modified"]=> string(24) "2015-11-24T08:33:30+0100" } array(2) { ["created"]=> string(24) "2015-11-15T08:33:30+0100" ["modified"]=> string(24) "2015-11-15T08:33:30+0100" } Created and Modified are set to the same value. ========== Fatal error: Class 'DateTimeImmutable' not found in /in/GGZtV on line 32
Process exited with code 255.
Output for 5.4.1
array(2) { ["created"]=> string(24) "2015-11-24T10:20:44+0100" ["modified"]=> string(24) "2015-11-24T10:20:44+0100" } array(2) { ["created"]=> string(24) "2015-11-15T10:20:44+0100" ["modified"]=> string(24) "2015-11-15T10:20:44+0100" } Created and Modified are set to the same value. ========== Fatal error: Class 'DateTimeImmutable' not found in /in/GGZtV on line 32
Process exited with code 255.

preferences:
175.53 ms | 402 KiB | 228 Q