PHP PHP - 随机图像

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP PHP - 随机图像相关的知识,希望对你有一定的参考价值。

<?php
//total number of images
$totalimages = "300";
//file type
$file_type = ".jpg";
//location
$image_folder = "../assets/images/";
//start counting from number
$startcounter = "1";
$random = mt_rand($startcounter, $totalimages);
$image_name = $image_folder . $random . $file_type;
?>
<img src="<?php echo $image_name; ?>" name="image<?php echo $random; ?>" width="" height="" border="0" id="image<?php echo $random; ?>" alt="" />

以上是关于PHP PHP - 随机图像的主要内容,如果未能解决你的问题,请参考以下文章

PHP 在PHP中显示随机图像

PHP PHP随机图像

PHP 随机图像PHP

PHP从文件夹中提取随机图像

PHP 使用php显示标准img src中目录的随机图像

PHP-随机图像