http://www.php.cn/code/5179.html
这个教程里的把for循环出来的信息赋值到session,这样循环出来只获取到一个数字;
for($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);
$yzxx .= "$content"; 你的等号前面少了个“.”