Skip to content

Instantly share code, notes, and snippets.

@Florencelg
Created September 16, 2018 15:46
Show Gist options
  • Save Florencelg/45ddf776aa173bdac1636304ff3e927e to your computer and use it in GitHub Desktop.
Save Florencelg/45ddf776aa173bdac1636304ff3e927e to your computer and use it in GitHub Desktop.
Les fonctions avec PHP
<?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