Création et utilisation des variables globales November 25, 2011 Author: user {filelink=14328} <?php $a = 10; $b = 20; function somme() { $GLOBALS['b'] = $GLOBALS['a'] + $GLOBALS['b']; } somme(); echo $b; ?> Categories: Uncategorized