3v4l.org

run code in 300+ PHP versions simultaneously
<?php declare(strict_types=1); function sum_int(int $a, int $b) : int { return $a + $b; } function sum_float(float $a, float $b) : float { return $a + $b; } function substract_int(int $a, int $b) : int { return $a - $b; } function substract_float(float $a, float $b) : float { return $a - $b; } function multiply_int(int $a, int $b) : int { return $a * $b; } function multiply_float(float $a, float $b) : float { return $a * $b; } function divide_int(int $a, int $b) : int { return $b == 0 ? $a : $a / $b; } function divide_float(float $a, float $b) : float { return $b == 0 ? $a : $a / $b; } echo "La somme de 9 + 14 = " . sum_int(9, 14) . "\r\n"; echo "La somme de 1.895 + 8.105 = " . sum_float(1.895, 8.105) . "\r\n"; echo "La soustraction de 9 - 14 = " . substract_int(9, 14) . "\r\n"; echo "La soustraction de 1.895 - 8.105 = " . substract_float(1.895, 8.105) . "\r\n"; echo "La multiplication de 9 * 14 = " . multiply_int(9, 14) . "\r\n"; echo "La multiplication de 1.895 * 8.105 = " . multiply_float(1.895, 8.105) . "\r\n"; echo "La division de 9 / 14 = " . divide_int(9, 0) . "\r\n"; echo "La division de 1.895 / 8.105 = " . divide_float(1.895, 0) . "\r\n";
Output for git.master, git.master_jit, rfc.property-hooks
La somme de 9 + 14 = 23 La somme de 1.895 + 8.105 = 10 La soustraction de 9 - 14 = -5 La soustraction de 1.895 - 8.105 = -6.21 La multiplication de 9 * 14 = 126 La multiplication de 1.895 * 8.105 = 15.358975 La division de 9 / 14 = 9 La division de 1.895 / 8.105 = 1.895

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:
45.64 ms | 402 KiB | 8 Q