fork download
  1. <?php
  2. echo "Bonjour, monde !";
  3. $nom = "Jean";
  4. echo "Bonjour, $nom !";
  5. $age = 25;
  6. if ($age >= 18) {
  7. echo "Vous ĂȘtes majeur.";
  8. } else {
  9. echo "Vous ĂȘtes mineur.";
  10. }
  11. ?>
  12.  
Success #stdin #stdout 0.03s 25660KB
stdin
Standard input is empty
stdout
Bonjour, monde !Bonjour, Jean !Vous êtes majeur.