效果如下

随机图片显示PHP代码 第1张

每次打开页面或者刷新页面的时候,页面中的图片都会随机出现。

具体有什么用我就不多说了,各有各的用法,我仅记录一下。

代码如下

<?php
header('Content-type:image/jpeg');
//你需要随机显示图片文件路径
$arr1=array('image/017f8a9fc2524aedf9fc2693be3e0eb4.jpeg','image/01b5c5b89f33030a4e9ad8763477b861.jpeg','image/02bf10373225b1bcb09f5889b910c96d.jpeg');
$key=array_rand($arr1);
/**
echo '<img src="http://localhost/api/bg/'.$arr1[$key].'" />';
*/
$image = imagecreatefromjpeg($arr1[$key]);
imagejpeg($image);
?>