Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <?php
  2. $writeSecretSentence= writeSecretSentence('Le Lion','ce temple');
  3. echo $writeSecretSentence;
  4.  
  5. function writeSecretSentence($PARAMETRE_1, $PARAMETRE_2)
  6. {
  7. $sentenceFinal=$PARAMETRE_1. ' ' ."s'incline face à". ' ' .$PARAMETRE_2;
  8. return $sentenceFinal;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement