基本的に私がやりたいことは、私のサイトにユーザーのユーザー名を提供するセクションを設けることです。例: 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 ページを読み取る基本的なフォームです。