Created
September 16, 2018 15:46
-
-
Save Florencelg/45ddf776aa173bdac1636304ff3e927e to your computer and use it in GitHub Desktop.
Les 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 | |
$animal= ['singe', 'loup']; | |
$chose = [' à la lune', 'au feux']; | |
function writeSecretSentence($parametre_1,$parametre_2) | |
{ | |
return $parametre_1." s'incline face ".$parametre_2; | |
} | |
echo writeSecretSentence($animal[0],$chose[1]); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment