Exemple de tableau associtif pré-défini avec propriété November 25, 2011 Author: user {filelink=14327} <html> <head> <title>tableau associatif</title> </head> <body> <?php $a = 0; function test($x,$y) { $GLOBALS['a'] = pow($x,$y); } echo "Avant a=$a<br/>"; test(2,3); echo "après a= $a "; ?> </body> </html> Categories: Uncategorized