3v4l.org

run code in 300+ PHP versions simultaneously
<?php trait TimeTrait { public static function createFromTimestamp(int|float $timestamp, $timezone = null, ?string $locale = null) { $time = new self(gmdate('Y-m-d H:i:s', $timestamp), 'UTC', $locale); $timezone ??= date_default_timezone_get(); return $time->setTimezone($timezone); } } class Time extends DateTimeImmutable { use TimeTrait; }
Output for git.master_jit, git.master
Deprecated: Return type of TimeTrait::createFromTimestamp(int|float $timestamp, $timezone = null, ?string $locale = null) should either be compatible with DateTimeImmutable::createFromTimestamp(int|float $timestamp): static, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /in/INmps on line 5

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

Active branches

Archived branches

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


preferences:
36.02 ms | 406 KiB | 5 Q