基本上我想做的是在我的网站上有一个部分,您可以在其中提供用户的用户名,例如:NOTCH
然后它会转到 minecraft 主机并找到用户的皮肤。“皮肤窃取者”,如果你喜欢的话。
但是我遇到了一个错误,不知道如何解决它..
<?php
if ($_GET['user'])
{
$user = $_GET['user'];
if(trim($user) == '')
{
die('No username entered!');
}
$user = preg_replace('/\s+/', '', $user);
header('Content-Type: image/png');
$picture = '<img src="http://s3.amazonaws.com/MinecraftSkins/$user.png">';
$getpicture = file_get_contents("$picture");
echo $picture
}
?>
HTML 只是读取名为“mcskin.php”的 php 页面的基本形式