PHP 有 identicon 库吗

发布于 2024-07-08 02:21:49 字数 1477 浏览 5 评论 0 原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

无风消散 2024-07-15 02:21:49

我用这个:

class Gravatar
{
    static public function GetGravatarUrl( $email, $size = 128, $type = 'identicon', $rating = 'pg' )
    {
        $gravatar = sprintf( 'http://www.gravatar.com/avatar/%s?d=%s&s=%d&r=%s',
                              md5( $email ), $type, $size, $rating );
        return $gravatar;
    }
}

这基本上与SO使用的东西相同。 它支持 gravatar.com 支持的所有内容。

i use this:

class Gravatar
{
    static public function GetGravatarUrl( $email, $size = 128, $type = 'identicon', $rating = 'pg' )
    {
        $gravatar = sprintf( 'http://www.gravatar.com/avatar/%s?d=%s&s=%d&r=%s',
                              md5( $email ), $type, $size, $rating );
        return $gravatar;
    }
}

Which is basically the same thing SO uses. It supports everything gravatar.com supports.

过期情话 2024-07-15 02:21:49

这个怎么样,

这就是 Scott 为 Wordpress 制作标识的方法,您可以下载代码亲自看看。

希望能帮助到你。

how about this

it's how Scott did the identicons for Wordpress, you can download the code and see for yourself.

Hope it helps.

妞丶爷亲个 2024-07-15 02:21:49

Sourceforge 有一个 PHP identicon 实现

Sourceforge has a PHP identicon implementation

旧时光的容颜 2024-07-15 02:21:49

PHPClasses 没有任何内容 - 但你可以看看这个 MonsterID 实施。

PHPClasses didn't have anything - but you could have a look at this MonsterID implementation.

清浅ˋ旧时光 2024-07-15 02:21:49

嗯,我想知道你为什么问,因为你链接到维基百科文章,它指出了很多实现,包括 PHP 的实现。 顺便说一句,谢谢你的问题,我不知道这些图标的名称...

但经过一番探索后,我发现很多链接都已经过时了...遵循 Visiglyphs 一,原始代码不再可用,但作者指出了一个替代的 OO 版本可以下载。 :-)

请注意,作者还写了一篇有趣的补充文章: 如何创建 Visiglyph 缓存

Mmm, I wondered why you asked, since you link to Wikipedia article which points to lot of implementations, including PHP ones. BTW, thanks for your question, I didn't know the name of these icons...

But after exploring a bit, I found lot of links there were outdated... Following the Visiglyphs one, the original code is no longer available, but the author points to an alternative, OO version which can be downloaded. :-)

Note that author also wrote an interesting complement article: How to create a Visiglyph cache .

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文