Newer
Older
function calculatePrice(
float $price,
float $tax,
float $discount
): float {
echo calculatePrice(100, 0.2, 10);
```
---
# Les Fonctions en PHP
## Paramètres Optionnels
```php
function calculatePrice(
float $price,
float $tax = 0.2,
float $discount = 0
): float {
function calculatePrice(
float $price,
float $tax = 0.2,
float $discount = 0
): float {