php获取QQ头像接口源码
QQ头像接口获取方式采用中转了腾讯的QQ头像获取接口,创建qqtx.php文件。然后把代码复制粘贴进去即可
PHP代码:
[*]<?php
[*]$qq = $_GET['qq'];
[*]$src = 'https://q1.qlogo.cn/g?b=qq&nk=' . $qq . '&s=100&t=' . time();
[*]header('Content-type: image/png');
[*]$res = imagecreatefromstring(file_get_contents($src));
[*]imagepng($res);
[*]imagedestroy($res);
[*]?>
接口方式:http://域名/qqtx.php?qq=QQ号
顶楼主啦..希望楼主多发精品好帖啦.....
页:
[1]