Maison > Questions et réponses > le corps du texte
http://www.php.cn/code/5179.html
Dans ce tutoriel, les informations de la boucle for sont affectées à la session, de sorte qu'un seul numéro soit obtenu après la boucle ;
pour($ i=0;$i<4;$i++){
$color=imagecolorallocate($image,rand(0,255),rand(0,255),rand(0,255));
$x=100/4* $i+7 ;
$y=rand(0,20);
$size=6;
$content=rand(0,9);
$yzxx="$content";
imagestring($image,$size ,$x, $y,$content,$color);
}
$_SESSION['yzxx']=$yzxx;
var_dump($_SESSION);