随机头像PHP版
随机头像PHP版
发布时间:2016-12-29 来源:查字典编辑
摘要:1.31字节PHP随机显示头像2.

1.31字节PHP随机显示头像

<?readfile(rand(0,5).'.jpg');?>

2.

<?php

$url='pic';

//图片地址,用相对路径

$files=array();

if($handle=opendir("$url")){

while(false!==($file=readdir($handle))){

if($file!="."&&$file!=".."){

if(substr($file,-3)=='gif'

substr($file,-3)=='jpg')$files[count($files)]=$file;

}

}

}

closedir($handle);

$random=rand(0,count($files)-1);

if(substr($files[$random],-3)=='gif')header("Content-type:image/gif");

elseif(substr($files[$random],-3)=='jpg')header("Content-type:image/jpeg");

readfile("$url/$files[$random]");

?>

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新php教程学习
热门php教程学习
编程开发子分类