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 git.master_jit, git.master
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 rfc.property-hooks
Fatal error: La longueur est trop courte. (min 1) in /in/DDc4k on line 15
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.39 ms | 406 KiB | 5 Q