3v4l.org

run code in 300+ PHP versions simultaneously
<?php declare(strict_types = 1); namespace App { class Status { const ACTIVE = 1; const INACTIVE = 2; const SOLD = 3; private $value; private $labels = [ self::ACTIVE => 'Active', self::ACTIVE => 'Inactive', self::ACTIVE => 'Sold', ]; /** * Status constructor. * @param $value */ public function __construct(int $value) { if (!in_array($value, $this->labels)) { throw new \InvalidArgumentException('Invalid status'); } $this->value = $value; } public function __toString() { return $this->labels[$this->value]; } } class Product { private $id; private $name; private $status; /** * Product constructor. * @param $id * @param $name * @param $status */ public function __construct(int $id, string $name, Status $status) { $this->id = $id; $this->name = $name; $this->status = $status; } } $status = new Status(Status::SOLD); var_dump(new Product(1, 'Chess board', $status)); echo "\n\n\n\n{$status}"; }
Output for 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.4, 8.3.6
Fatal error: Uncaught InvalidArgumentException: Invalid status in /in/4TT2v:27 Stack trace: #0 /in/4TT2v(59): App\Status->__construct(3) #1 {main} thrown in /in/4TT2v on line 27
Process exited with code 255.
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 Fatal error: Uncaught InvalidArgumentException: Invalid status in /in/4TT2v:27 Stack trace: #0 /in/4TT2v(59): App\Status->__construct(3) #1 {main} thrown in /in/4TT2v on line 27
Process exited with code 255.
Output for 5.5.0 - 5.5.38, 5.6.0 - 5.6.40
Warning: Unsupported declare 'strict_types' in /in/4TT2v on line 2 Catchable fatal error: Argument 1 passed to App\Status::__construct() must be an instance of App\int, integer given, called in /in/4TT2v on line 59 and defined in /in/4TT2v on line 24
Process exited with code 255.

preferences:
242.25 ms | 402 KiB | 330 Q