PHP-随机图像

Posted

tags:

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

  1. <?php
  2. //total number of images
  3. $totalimages = "300";
  4. //file type
  5. $file_type = ".jpg";
  6. //location
  7. $image_folder = "../assets/images/";
  8. //start counting from number
  9. $startcounter = "1";
  10. $random = mt_rand($startcounter, $totalimages);
  11. $image_name = $image_folder . $random . $file_type;
  12. ?>
  13. <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-随机图像