Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <?php
  2. define("KONSTANTE", "Hallo Welt.");
  3. echo KONSTANTE; // gibt "Hallo Welt." aus
  4. echo Konstante; // gibt "Konstante" aus und erzeugt eine Benachrichtigung
  5.  
  6. define("BEGRUESSUNG", "Hallo Du.", true);
  7. echo BEGRUESSUNG; // gibt "Hallo Du." aus
  8. echo Begruessung; // gibt "Hallo Du." aus
  9.  
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement