3v4l.org

run code in 300+ PHP versions simultaneously
<?php declare(strict_types=1); namespace Domain\Mixins { trait ContentAware { protected string $content; public function getContent() { return $this->content; } public function setContent(string $content) { $this->content = $content; } } use Domain\user\User; trait UserAware { protected User $author; public function getAuthor() { return $this->author; } public function setAuthor(User $author) { $this->author = $author; } } } namespace Domain\User { class User { public function __construct(public string $name){} } } namespace Domain\Forum { use Domain\Mixins; class Message { use Mixins\ContentAware, Mixins\UserAware; } } namespace { use Domain\Forum\Message; use Domain\User\User; $message = new Message; $message->setContent('Hello'); $message->setAuthor(new User('greg')); echo sprintf('%s %s', $message->getContent(), $message->getAuthor()->name); }
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.34, 8.2.0 - 8.2.30, 8.3.0 - 8.3.30, 8.4.1 - 8.4.14, 8.4.16 - 8.4.18, 8.5.0 - 8.5.3
Hello greg
Output for 8.4.15
/bin/php-8.4.15: /usr/lib/libm.so.6: version `GLIBC_2.38' not found (required by /bin/php-8.4.15) /bin/php-8.4.15: /usr/lib/libm.so.6: version `GLIBC_2.35' not found (required by /bin/php-8.4.15) /bin/php-8.4.15: /usr/lib/libc.so.6: version `GLIBC_2.34' not found (required by /bin/php-8.4.15) /bin/php-8.4.15: /usr/lib/libc.so.6: version `GLIBC_2.38' not found (required by /bin/php-8.4.15)
Process exited with code 1.
Output for 7.4.0 - 7.4.33
Parse error: syntax error, unexpected 'public' (T_PUBLIC), expecting variable (T_VARIABLE) in /in/frW8k on line 35
Process exited with code 255.
Output for 7.3.0 - 7.3.33
Parse error: syntax error, unexpected 'string' (T_STRING), expecting function (T_FUNCTION) or const (T_CONST) in /in/frW8k on line 7
Process exited with code 255.

preferences:
104.52 ms | 482 KiB | 5 Q