Вы можете изменить каждое имя на произвольное имя файла.(при условии, что вы уже записали изображение в файл, используя переменную $imagefilename
, а расширение - .jpg)
<?php
//The image, defined as $image
//Write the image to a file, using the $imagefilename variable for a name.
$webpagefilename = rand();
$imagefilename = $webpagefilename.".jpg";
$myFile = $filename.".html";
$fh = fopen($myFile, 'w') or die("Error: Can't open file");
$stringData = "<img src='".$imagefilename."' />";
fwrite($fh, $stringData);
fclose($fh);
?>
Попробуйте это.: P