forked from liliancal/formation-piscine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions.php
91 lines (77 loc) · 2.24 KB
/
functions.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?php
function mafonction1(){
echo "toto";
}
//mafonction1();
function mafonction2(){
return "toto";
}
//$data = mafonction2();
//echo $data;
function maPinaColada($alcool,$soft){
echo "j ai fabriqué de la pina colada avec : ".$alcool." + ".$soft;
}
//maPinaColada("rhum","ananas / coco");
function moncocktail($cocktail, $alcool,$soft){
echo "j ai fabriqué de la ".$cocktail." avec : ".$alcool." + ".$soft;
}
//moncocktail("pina colada","rhum","ananas / coco");
//moncocktail("pina colada","rhum + autre","ananas / coco + glaçon");
function monCocktailGeneriqueLucas($cocktail, $listeIngredients){
echo "j ai fabriqué ".$cocktail." avec : ";
foreach($listeIngredients as $element){
$nbElement = count($element);
for($i=0;$i <= $nbElement;$i++){
echo $element.", ";
}
}
echo "\n";
}
function monCocktailGeneriqueYoan($cocktail, $listeIngredients){
echo "j ai fabriqué ".$cocktail." avec : ";
foreach($listeIngredients as $element){
echo $element;
$nbElement = count($element)-1;
for($i=0;$i <= $nbElement;$i++){
echo ", ";
}
}
echo "\n";
}
function monCocktailGeneriqueJulien($cocktail, $listeIngredients){
echo "j ai fabriqué ".$cocktail." avec : ";
// faire tourner le foreach pour les 3 1ers éléments et sortir pour le 4ème
// => arrêter le foreach avant ..
foreach($listeIngredients as $element){
echo $element;
$nbElement = count($element)-1;
for($i=0;$i <= $nbElement;$i++){
echo ", ";
}
}
echo "\n";
}
function monCocktailGeneriqueLucas2($cocktail, $listeIngredients){
echo "j ai fabriqué ".$cocktail." avec : ";
// faire tourner le foreach pour les 3 1ers éléments et sortir pour le 4ème
// => arrêter le foreach avant ..
$nbElement = count($listeIngredients)-1;
for($i=0;$i < $nbElement;$i++){
echo $listeIngredients[$i].", ";
}
echo $listeIngredients[$nbElement].".\n";
}
function monCocktailGenerique($cocktail, $listeIngredients){
echo "j ai fabriqué ".$cocktail." avec : ";
$nbElement = count($listeIngredients);
for($i=0;$i < $nbElement;$i++){
if($i != $nbElement-1){
echo $listeIngredients[$i].", ";
}
else{
echo $listeIngredients[$i].".\n";
}
}
}
$malistedingredients=array('vodka','kalua','lait','glaçons');
monCocktailGenerique("whiteRussian", $malistedingredients);