QQ空间获取当前用户名最近很流行在qq空间里转载带有当前用户的一些图片,简单研究一下其实就是利用php来创建的一个简单的图片。! V0 h6 b# R3 j( b+ I6 M
生成图片 image.php:3 r/ s4 V! ~5 D* A- |% Q% E
[PHP] 纯文本查看 复制代码 <!--?php
$ment = $_SERVER["HTTP_REFERER"];
if($ment == 'http://cnc.qzs.qq.com/qzone/newblog/v5/editor.html'){
header("HTTP/1.0 500 Internal Server Error");
exit;}
preg_match("#[0-9]{5,11}#",$ment,$rr);
$r=$rr[0];
$webtext=file_get_contents('http://www.phperzone.cn/qqinfo-service.php?qq='.$r);
preg_match('#"nickname":"(.*?)"#',$webtext,$rr);
$rrr=$rr[1];
ob_clean();
header("Content-type:image/png");
$im=imagecreatefromjpeg("1.jpg");
$black = ImageColorAllocate($im, 56,73,136);
$rrr = mb_convert_encoding($rrr, "utf-8","UTF-8");
imagettftext($im,20,0,90,68,$black,"./simsun.ttc",$rrr);
imagettftext($im,26,0,87,125,$black,"./simsun.ttc",$r);
imagejpeg($im);
imagedestroy($im);
?-->
( k7 @2 w) K& W$ d: [3 }$ U! g5 H! ~8 n
( N- _; {* t+ Y# @( {
接口文件 qqinfo-service.php:& D: `8 d# |, Z: m
[PHP] 纯文本查看 复制代码 <!--?php
header("Content-Type:text/html;charset=utf-8");
$qq = $_GET ["qq"];
echo htmlspecialchars(file_get_contents('http://r.qzone.qq.com/cgi-bin/user/cgi_personal_card'. "?uin=" . $qq));
?-->
$ [ \ U6 l5 Z" x6 t4 c' H' ^& l
1 ]6 S) K) ^; R4 A- L$ W1 M8 D' \, G4 r9 a. R
源码下载 上传PHP空间" e( n5 v e" @1 V
% \9 Q9 Y1 K, U/ y9 |
4 N3 L. b( c0 N5 B7 {8 c# B2 [
. d P$ r8 T' e3 u |