Maison >développement back-end >tutoriel php >php随机显示图片代码

php随机显示图片代码

WBOY
WBOYoriginal
2016-07-25 08:44:131575parcourir
php通过rand()函数产生随机数,这个函数可以产生一个指定范围的数字
这段代码通过产生的随机数,随机选择图片
  1. srand( microtime() * 1000000 );
  2. $num = rand( 1, 4 );
  3. switch( $num )
  4. {
  5. case 1: $image_file = "/home/images/alfa.jpg";
  6. break;
  7. case 2: $image_file = "/home/images/ferrari.jpg";
  8. break;
  9. case 3: $image_file = "/home/images/jaguar.jpg";
  10. break;
  11. case 4: $image_file = "/home/images/porsche.jpg";
  12. break;
  13. }
  14. echo "Random Image : php随机显示图片代码 ";
  15. ?>
复制代码

php


Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn