<?php
for($i=0;$i<4;$i++){
$fontsize = 6;
$fontcolor = imagecolorallocate($image,0,0,0);
$footcontent = rand(0,9);
$x = 0;
$y = 0;
imagestring( $image, $fontsize, $x, $y, $fontcontent, $fontcolor);
}
我这里为什么会报错
for($i=0;$i<4;$i++){
$fontsize = 6;
$fontcolor = imagecolorallocate($image,0,0,0);
$footcontent = rand(0,9);
$x = 0;
$y = 0;
imagestring( $image, $fontsize, $x, $y, $fontcontent, $fontcolor);
}
我这里为什么会报错
2018-01-18