Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

随机头像 - 给无头像会员随机生成一个 BY 折翼de天使♂ FOR UC ALL[9-15早更新]

[复制链接]
sotrm 发表于 2008-10-6 14:06:49 | 显示全部楼层
修改成功,感谢楼主的奉献!
回复

使用道具 举报

goal520 发表于 2008-10-6 19:48:46 | 显示全部楼层
6。0如何修改啊
回复

使用道具 举报

byxzwd 发表于 2008-10-6 19:51:40 | 显示全部楼层
支持了。下来看看再说
回复

使用道具 举报

byxzwd 发表于 2008-10-6 20:06:28 | 显示全部楼层
<?php

/*
        [UCenter] (C)2001-2008 Comsenz Inc.
        This is NOT a freeware, use is subject to license terms

        $Id: avatar.php 12126 2008-01-11 09:40:32Z heyond $
*/

//note url格式: http://uc_server/avatar.php?uid=123

error_reporting(7);

$uid = isset($_GET['uid']) ? $_GET['uid'] : 0;
$size = isset($_GET['size']) ? $_GET['size'] : '';
$random = isset($_GET['random']) ? $_GET['random'] : '';

$avatar = './data/avatar/'.get_avatar($uid, $size);

if(file_exists($avatar)) {
        $random = !empty($random) ? rand(1000, 9999) : '';
        header("Location: $avatar?random=$random");
} else {
        $size = in_array($size, array('big', 'middle', 'small')) ? $size : 'middle';
        header("Location: images/noavatar_$size.gif");
}

/**
* 根据用户的 uid 得到 avatar/home 目录
*
* @param int $uid
* @return string
*/
function get_avatar($uid, $size = 'middle') {
        $size = in_array($size, array('big', 'middle', 'small')) ? $size : 'middle';
        $uid = abs(intval($uid));
        $uid = sprintf("%09d", $uid);
        $dir1 = substr($uid, 0, 3);
        $dir2 = substr($uid, 3, 2);
        $dir3 = substr($uid, 5, 2);
        return $dir1.'/'.$dir2.'/'.$dir3.'/'.substr($uid, -2)."_avatar_$size.jpg";
}

?>



我的那个文件是这样子的。怎么改?UC1.0 GBK的版本,不一样?
回复

使用道具 举报

Macsloverd 发表于 2008-10-7 09:27:24 | 显示全部楼层
好东西~!感谢~!
回复

使用道具 举报

zh11an 发表于 2008-10-7 12:13:11 | 显示全部楼层
支持楼主
回复

使用道具 举报

Kevin0973 发表于 2008-10-7 17:58:02 | 显示全部楼层
里面的文件可以自己定,只要文件名一样就可以,

??????????????????
什么意思
回复

使用道具 举报

十月阁下 发表于 2008-10-7 18:23:22 | 显示全部楼层
好东西
回复

使用道具 举报

舍不得太乖 发表于 2008-10-7 20:21:13 | 显示全部楼层
收下了 谢谢~~ 去试试`
回复

使用道具 举报

zhonyijun 发表于 2008-10-7 21:01:35 | 显示全部楼层
:victory: 留个记号
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-12-26 11:38 , Processed in 0.027065 second(s), 4 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表