Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <body> <?php function add_five(&$value) { $value += 5; } $num = 2; add_five($num); echo $num; ?> </body> </html>
7