mirror of
https://github.com/mashirozx/sakura.git
synced 2024-11-23 07:18:12 +08:00
fix QQ.php
Replace the available interface
This commit is contained in:
parent
1515c0bbae
commit
cca0903a24
@ -5,7 +5,7 @@ namespace Sakura\API;
|
|||||||
class QQ
|
class QQ
|
||||||
{
|
{
|
||||||
public static function get_qq_info($qq) {
|
public static function get_qq_info($qq) {
|
||||||
$get_info = file_get_contents('http://r.qzone.qq.com/fcg-bin/cgi_get_portrait.fcg?get_nick=1&uins=' . $qq);
|
$get_info = file_get_contents('http://users.qzone.qq.com/fcg-bin/cgi_get_portrait.fcg?uins=' . $qq);
|
||||||
$get_info = mb_convert_encoding($get_info, "UTF-8", "GBK");
|
$get_info = mb_convert_encoding($get_info, "UTF-8", "GBK");
|
||||||
$name = json_decode(substr($get_info, 17, -1), true);
|
$name = json_decode(substr($get_info, 17, -1), true);
|
||||||
if ($name) {
|
if ($name) {
|
||||||
|
Loading…
Reference in New Issue
Block a user