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 $a = 0; // Vrai car $a est défini if (isset($a)) { echo "Variable 'a' is set.<br>"; } $b = null; // Faux car $b est NULL if (isset($b)) { echo "La variable 'b' est définie."; } ?> </body> </html>
Variable 'a' is set.