3v4l.org

run code in 300+ PHP versions simultaneously
<?php declare(strict_types=1); class Pont { public float $longueur; public float $largeur; public function getSurface(): float { return $this->longueur * $this->largeur; } } $towerBridge = new Pont; $towerBridge->longueur = 286.0; $towerBridge->largeur = 15.0; $manhattanBridge = new Pont; $manhattanBridge->longueur = 2089.0; $manhattanBridge->largeur = 36.6; $towerBridgeSurface = $towerBridge->getSurface(); $manhattanBridgeSurface = $manhattanBridge->getSurface(); var_dump($towerBridgeSurface); var_dump($manhattanBridgeSurface);
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.30, 8.2.0 - 8.2.25, 8.3.0 - 8.3.13
float(4290) float(76457.40000000001)
Output for 7.4.0 - 7.4.33
float(4290) float(76457.4)
Output for 7.3.0 - 7.3.33
Parse error: syntax error, unexpected 'float' (T_STRING), expecting function (T_FUNCTION) or const (T_CONST) in /in/FL2nD on line 7
Process exited with code 255.

preferences:
61.46 ms | 408 KiB | 5 Q