3v4l.org

run code in 300+ PHP versions simultaneously
<?php trait TimeTrait { public static function createFromTimestamp(int $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
Fatal error: Declaration of TimeTrait::createFromTimestamp(int $timestamp, $timezone = null, ?string $locale = null) must be compatible with DateTimeImmutable::createFromTimestamp(int|float $timestamp): static in /in/5rcSN on line 5
Process exited with code 255.

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

Active branches

Archived branches

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


preferences:
59.66 ms | 405 KiB | 5 Q