Guest User

Untitled

a guest
Jun 23rd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <?php
  2. function getName(){
  3. return "Harry Potter";
  4. }
  5. function getEnemy(){
  6. return "Dragon";
  7. }
  8. function getLocation(){
  9. return "Darkwood Forest";
  10. }
  11. function sentence(){
  12. echo "Deep in " . getLocation() . ", " . getName() . " battled a great " . getEnemy() . ".";
  13. //Would echo "Deep in Darkwood Forest, Harry Potter battled a great Dragon."
  14. }
  15. sentence();
  16. ?>
Add Comment
Please, Sign In to add comment