我正在使用以下代码从 minecraft.net 检索玩家帐户状态。
//Checks MC Username For Validation
function checkPlayer($player) {
if (!function_exists('curl_init')){
die('CURL is not installed!');
}
$ch = curl_init('http://www.minecraft.net/haspaid.jsp?user='.$player.'');
curl_setopt($ch,CURLOPT_FOLLOWLOCATION,true);
$content = curl_exec($ch);
curl_close($ch);
if (trim($output) == true) {
return true;
} else {
return false;
}
我的主机安装了 Curl,我用它代替了file_get_content
,但这不起作用?有人能帮助我吗?