Leçon N° 02 : Les Variables
Variables statiques¤
Notes de page
Source: lesson_02_statics_1.phpRé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

Tous droits réservés. 2005-2020