@ 2019-12-02T17:31:01Z <?php
class Foo {
private DateTimeImmutable $bar;
private ?string $foo;
public function getBar(): DateTimeImmutable
{
return $this->bar ??= new DateTimeImmutable();
}
public function getFoo(): ?string
{
return $this->foo ??= null;
}
public function setFoo(string $foo): self
{
$this->foo = $foo;
return $this;
}
}
$foo = new Foo();
var_dump($foo->getBar());
var_dump($foo->getBar());
var_dump($foo->getFoo());
$foo->setFoo('test');
var_dump($foo->getFoo());
Enable javascript to submit You have javascript disabled. You will not be able to edit any code.
Output for 8.2.18 , 8.4.1 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.009812"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.009812"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.3.14 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.004075"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.004075"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.3.13 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.007242"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.007242"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.3.12 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003854"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003854"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.3.11 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.004234"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.004234"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.3.10 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.004300"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.004300"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.3.9 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.004421"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.004421"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.3.8 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.006397"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.006397"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.3.7 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.010233"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.010233"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.3.6 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.009555"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.009555"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.3.5 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.004867"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.004867"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.3.4 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.008473"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.008473"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.3.3 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.008561"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.008561"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.3.2 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.007122"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.007122"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.3.1 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003679"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003679"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.3.0 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.008885"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.008885"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.2.25 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.009005"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.009005"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.1.27 , 8.2.24 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003795"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003795"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.2.23 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.004306"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.004306"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.2.22 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.004043"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.004043"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.2.21 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.009727"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.009727"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.2.20 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.004596"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.004596"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.2.19 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.007076"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.007076"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.2.17 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.008752"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.008752"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.2.16 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.006633"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.006633"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.2.15 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003735"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003735"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.2.14 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003672"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003672"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.2.13 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003666"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003666"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.2.12 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003622"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003622"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.2.11 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.004641"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.004641"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.2.10 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.005196"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.005196"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.2.9 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003733"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003733"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.2.8 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003690"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003690"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.2.7 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003927"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003927"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.0.16 , 8.2.6 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003809"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003809"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.2.5 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003874"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003874"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.1.16 , 8.2.4 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003806"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003806"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.2.3 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003742"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003742"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.2.2 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003767"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003767"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.2.1 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003826"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003826"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.2.0 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.004118"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.004118"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.1.30 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.008944"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.008944"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.1.29 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.006150"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.006150"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.1.28 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.007636"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.007636"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.1.26 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003965"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003965"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.1.25 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003939"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003939"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.1.24 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003810"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003810"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.1.23 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.005062"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.005062"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.1.22 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003671"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003671"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.1.21 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.004170"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.004170"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.1.20 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003787"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003787"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.1.19 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.004233"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.004233"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.1.18 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.004016"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.004016"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.1.17 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003972"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003972"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.1.15 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003768"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003768"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.1.14 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003567"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003567"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.1.13 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003607"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003607"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.1.12 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003782"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003782"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.1.11 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003481"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003481"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.1.10 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003702"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003702"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.1.9 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003761"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003761"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.1.8 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003669"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003669"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.1.7 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003468"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003468"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.1.6 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.004019"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.004019"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.1.5 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003997"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003997"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.1.4 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003864"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003864"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.1.3 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003642"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003642"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.1.2 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.006028"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.006028"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.1.1 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003663"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003663"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.1.0 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003641"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003641"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.0.30 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003384"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003384"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.0.29 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003532"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003532"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.0.28 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003344"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003344"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.0.27 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003508"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003508"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.0.26 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003291"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003291"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.0.25 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003186"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003186"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.0.24 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003303"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003303"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.0.23 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003194"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003194"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.0.22 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003509"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003509"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.0.21 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003406"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003406"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.0.20 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003317"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003317"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.0.19 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003778"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003778"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.0.18 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003954"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003954"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.0.17 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.006622"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.006622"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.0.15 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003643"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003643"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.0.14 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.004134"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.004134"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.0.13 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 08:39:38.002321"
["timezone_type"]=>
int(3)
["timezone"]=>
string(3) "UTC"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 08:39:38.002321"
["timezone_type"]=>
int(3)
["timezone"]=>
string(3) "UTC"
}
NULL
string(4) "test"
Output for 8.0.12 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003777"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003777"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.0.11 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003459"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003459"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.0.10 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003957"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003957"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.0.9 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003952"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003952"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.0.8 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.008615"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.008615"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.0.7 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003850"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003850"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.0.6 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003773"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003773"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.0.5 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003548"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003548"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.0.3 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.007643"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.007643"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.0.2 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.011302"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.011302"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 7.4.29 , 8.0.1 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003463"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003463"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 8.0.0 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.008886"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.008886"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 7.4.33 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.001934"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.001934"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 7.4.32 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.002975"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.002975"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 7.4.30 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003941"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003941"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 7.4.28 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003286"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003286"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 7.4.27 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003114"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003114"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 7.4.26 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003106"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003106"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 7.4.25 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003213"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003213"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 7.4.24 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003399"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003399"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 7.4.23 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003175"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003175"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 7.4.22 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003264"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003264"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 7.4.21 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.007014"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.007014"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 7.4.20 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003801"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.003801"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 7.4.13 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.011448"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.011448"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 7.4.12 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.010874"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.010874"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 7.4.11 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.012214"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.012214"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 7.4.10 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.009165"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.009165"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 7.4.9 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.009735"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.009735"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 7.4.8 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.008808"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.008808"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 7.4.7 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.008229"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.008229"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 7.4.6 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:39.000358"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:39.000358"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 7.4.5 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.002403"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.002403"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 7.4.4 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.008682"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.008682"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 7.4.0 object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.000320"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
object(DateTimeImmutable)#2 (3) {
["date"]=>
string(26) "2019-12-03 09:39:38.000320"
["timezone_type"]=>
int(3)
["timezone"]=>
string(16) "Europe/Amsterdam"
}
NULL
string(4) "test"
Output for 7.1.0 - 7.1.33 , 7.2.0 - 7.2.33 , 7.3.0 - 7.3.33 Parse error: syntax error, unexpected 'DateTimeImmutable' (T_STRING), expecting function (T_FUNCTION) or const (T_CONST) in /in/U02G2 on line 4
Process exited with code 255 . Output for 5.4.0 - 5.4.45 , 5.5.0 - 5.5.38 , 5.6.0 - 5.6.40 , 7.0.0 - 7.0.33 Parse error: syntax error, unexpected 'DateTimeImmutable' (T_STRING), expecting variable (T_VARIABLE) in /in/U02G2 on line 4
Process exited with code 255 . Output for 5.1.0 - 5.1.6 , 5.2.0 - 5.2.17 , 5.3.0 - 5.3.29 Parse error: syntax error, unexpected T_STRING, expecting T_VARIABLE in /in/U02G2 on line 4
Process exited with code 255 . Output for 5.0.0 - 5.0.5 Parse error: parse error, unexpected T_STRING, expecting T_VARIABLE in /in/U02G2 on line 4
Process exited with code 255 . Output for 4.4.2 - 4.4.9 Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/U02G2 on line 4
Process exited with code 255 . Output for 4.3.0 - 4.3.1 , 4.3.5 - 4.3.11 , 4.4.0 - 4.4.1 Parse error: parse error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/U02G2 on line 4
Process exited with code 255 . Output for 4.3.2 - 4.3.4 Parse error: parse error, expecting `T_OLD_FUNCTION' or `T_FUNCTION' or `T_VAR' or `'}'' in /in/U02G2 on line 4
Process exited with code 255 . preferences:dark mode live preview
125.67 ms | 643 KiB | 5 Q