JQuery/PHP

PHP 实现随机图像功能

阿里云

我们之前发过一篇 PHP 简单实现一言 / 随机一句功能,既然随机的文字有了,随机图像当然不能落下。PHP 随机图像实现的代码超级简单,php 通过 rand()函数产生随机数,这个函数可以产生一个指定范围的数字这段代码通过产生的随机数,随机选择图片:

方法一

  1. <html>
  2. <body>
  3. <?php
  4.  srand( microtime() * 1000000 );
  5.  $num = rand( 1, 4 );
  6.  
  7.  switch( $num )
  8.  {
  9.  case 1: $image_file = "/home/images/alfa.jpg";
  10.      break;
  11.  case 2: $image_file = "/home/images/ferrari.jpg";
  12.      break;
  13.  case 3: $image_file = "/home/images/jaguar.jpg";
  14.      break;
  15.  case 4: $image_file = "/home/images/porsche.jpg";
  16.      break;
  17.  }
  18.  echo "Random Image : <img src=$image_file />";
  19. ?>
  20. </body>
  21. </html>
也想出现在这里?联系我们
创客主机

方法二

  1. <?
  2. $handle = opendir('./'); //当前目录
  3. while (false !== ($file = readdir($handle))) { //遍历该php教程文件所在目录
  4. list($filesname,$kzm)=explode(".",$file);//获取扩展名
  5. if ($kzm=="gif" or $kzm=="jpg") { //文件过滤
  6. if (!is_dir('./'.$file)) { //文件夹过滤
  7. $array[]=$file;//把符合条件的文件名存入数组
  8. }
  9. }
  10. }
  11. $suiji=array_rand($array); //使用array_rand函数从数组中随机抽出一个单元
  12. ?>
  13. <img src="<?=$array[$suiji]?>">

方法三

  1. <?php
  2. /**********************************************
  3. * Filename : img.php
  4. * Author : freemouse
  5. * Usage:
  6. * <img src=img.php>
  7. * <img src=img.php?folder=images2/>
  8. ***********************************************/
  9. if($_GET['folder']){
  10. $folder=$_GET['folder'];
  11. }else{
  12. $folder='/images/';
  13. }
  14. //存放图片文件的位置
  15. $path = $_SERVER['DOCUMENT_ROOT']."/".$folder;
  16. $files=array();
  17. if ($handle=opendir("$path")) {
  18. while(false !== ($file = readdir($handle))) {
  19. if ($file != "." && $file != "..") {
  20. if(substr($file,-3)=='gif' || substr($file,-3)=='jpg') $files[count($files)] = $file;
  21. }
  22. }
  23. }
  24. closedir($handle);
  25. $random=rand(0,count($files)-1);
  26. if(substr($files[$random],-3)=='gif') header("Content-type: image/gif");
  27. elseif(substr($files[$random],-3)=='jpg') header("Content-type: image/jpeg");
  28. readfile("$path/$files[$random]");
  29. ?>

方法四

PHP 随机图像实现的代码超级简单,短短四行就搞定了:

  1. <?php
  2. $img_array = glob('images/*.{gif,jpg,png,jpeg,webp,bmp}', GLOB_BRACE);
  3. if(count($img_array) == 0) die('没找到图片文件。请先上传一些图片到 '.dirname(__FILE__).'/images/ 文件夹');
  4. header('Content-Type: image/png');
  5. echo(file_get_contents($img_array[array_rand($img_array)]));
  6. ?>

PHP 实现随机图像功能

已有 409 人购买
查看演示升级 VIP立刻购买

收藏
(0)

发表回复

热销模板

Ashade - 作品展示摄影相册WordPress汉化主题
LensNews

本站承接 WordPress / PbootCMS / DedeCMS 等
系统建站、仿站、开发、定制等业务!