PHP 随机显示图片

我们在这介绍两种方法:

第一种,使用本地图片,代码如下:

<?php
     readfile( "./img/" . rand(1,5) . ".jpg" ); 
?> 

第二种,使用URL站外图片,代码如下:

<?php
     $id=rand(1,5);
     $image[1]='http://farm.static.flickr.com/1.png';
     $image[2]='http://farm.static.flickr.com/2.png';
     $image[3]='http://farm.static.flickr.com/3.png';
     $image[4]='http://farm.static.flickr.com/4.png';
     $image[5]='http://farm.static.flickr.com/5.png';
     header("location:$image[$id]");
?>

如果你有其他见解,欢迎大家评论参与讨论,以便发现错误让我们及时更正!

发表评论

邮箱地址不会被公开。 必填项已用*标注