Created
March 12, 2019 13:43
-
-
Save ConnorFM/80566654e095fa360d2dd54af8486d0a to your computer and use it in GitHub Desktop.
Fonctions avec php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function writeSecretSentence (string $PARAMETRE_1 , string $PARAMETRE_2):string{ | |
return $PARAMETRE_1 . " s'incline face à " . $PARAMETRE_2 . "<br>"; | |
} | |
echo(writeSecretSentence("l'homme", "la femme")); | |
echo (writeSecretSentence("la femme" , "l'homme")); | |
echo "no sexism"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment