3v4l.org

run code in 300+ PHP versions simultaneously
<?php declare(strict_types=1); final readonly class Time { private function __construct( private int $seconds, ) {} public static function fromSeconds(int $seconds): self { return new self($seconds); } } // false var_dump(Time::fromSeconds(0) === Time::fromSeconds(0)); // true var_dump(Time::fromSeconds(0) == Time::fromSeconds(0)); var_dump(Time::fromSeconds(1) > Time::fromSeconds(0)); var_dump(Time::fromSeconds(1) >= Time::fromSeconds(1)); var_dump(Time::fromSeconds(0) < Time::fromSeconds(1)); var_dump(Time::fromSeconds(1) <= Time::fromSeconds(1));
Output for git.master_jit, git.master
bool(false) bool(true) bool(true) bool(true) bool(true) bool(true)

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:
26.2 ms | 405 KiB | 5 Q