随机头像PHP版
作者:bea
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($f
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]");
?>
有用 | 无用
<?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编写PDF文档生成器
- PHP设计聊天室步步通
- 编写PHP的安全策略
- MVC模式的PHP实现
- 使用PHP和XSL stylesheets转换XML文档
- 将PHP作为Shell脚本语言使用
- PHP分页显示制作详细讲解
- 用PHP调用Oracle存储过程
- 不用GD库生成当前时间的PNG格式图象的程序
- 用定制的PHP应用程序来获取Web服务器的状态信息
- PHP在Web开发领域的优势
- 优化NFR之一 --MSSQL Hello Buffer Overflow
- 风格模板初级不完全修改教程
- 如何对PHP程序中的常见漏洞进行攻击
- 用PHP 4.2书写安全的脚本
- 3.从实例开始
- 漂亮但不安全的CTB
- 自动跳转中英文页面