标题: 新版扣扣消息铃声API
时间: 2015-04-25
<?php
//QQ消息铃声接口
error_reporting(0);
header('Content-Type:text/html;charset=utf-8');
$c=file_get_contents("http://i.gtimg.cn/club/moblie/special_sound/sound_config.json");
$q = json_decode($c,true);
# 不加true 则为编译对象,加则输出为数组
#var_dump ($q);
# 解析数组
$i=rand(0,119);
#随机演示
$qx = $q["sound_config"]["items"][$i]["access"];
#用户权限
$bg = $q["sound_config"]["items"][$i]["backgroundUrl"];
#背景图片
$na = $q["sound_config"]["items"][$i]["name"];
#铃声名字
$surl = $q["sound_config"]["items"][$i]["soundUrl"];
#铃声链接
$time = $q["sound_config"]["items"][$i]["limitFreeStart"];
#更新时间
if($qx=='normal' || $qx==''){ $qx = '不限'; }
echo '<hr>用户等级:'.$qx.'<br>'.$time ;
echo '<br><a href="'.$surl.'" /><img src="'.$bg.'"></a>' ;
?>
『回复列表(6|隐藏机器人聊天)』