Source: lesson_02_statics_1.php | Résultat |
<?php $a=1; $b=2; echo "Premier appel : ".somme($a,$b)."<br/>" ; echo "Second appel : ".somme($a,$b)."<br/>" ; echo "Troisième appel : ".somme($a,$b)."<br/>" ; function somme() { static $c ; $c++; $result = $GLOBALS["a"] + $GLOBALS["b"] + $c; return $result ; } ?>
| Premier appel : 4 Second appel : 5 Troisième appel : 6
|