Skip to content

Instantly share code, notes, and snippets.

@ConnorFM
Created March 12, 2019 13:43
Show Gist options
  • Save ConnorFM/80566654e095fa360d2dd54af8486d0a to your computer and use it in GitHub Desktop.
Save ConnorFM/80566654e095fa360d2dd54af8486d0a to your computer and use it in GitHub Desktop.
Fonctions avec php
<?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