3v4l.org

run code in 300+ PHP versions simultaneously
<?php declare(strict_types=1); class Pont { private string $unite = 'm²'; private float $longueur; private float $largeur; public function setLongueur(float $longueur): void { if ($longueur < 0) { trigger_error( 'La longueur est trop courte. (min 1)', E_USER_ERROR ); } $this->longueur = $longueur; } } $towerBridge = new Pont; $towerBridge->setLongueur(286.0); $towerBridge->setLongueur(-286.0);
Output for 8.4.1 - 8.4.2
Deprecated: Passing E_USER_ERROR to trigger_error() is deprecated since 8.4, throw an exception or call exit with a string message instead in /in/DDc4k on line 15 Fatal error: La longueur est trop courte. (min 1) in /in/DDc4k on line 15
Process exited with code 255.
Output for 8.2.0 - 8.2.26, 8.3.0 - 8.3.14
Fatal error: La longueur est trop courte. (min 1) in /in/DDc4k on line 15
Process exited with code 255.
Output for 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.31
Fatal error: La longueur est trop courte. (min 1) in /in/DDc4k on line 17
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/DDc4k on line 7
Process exited with code 255.

preferences:
78.26 ms | 409 KiB | 5 Q