我看到网页能够将文字关闭http://assetgame.roblox.com/game/GetAuthTicket
我正在尝试做同样的事情,但它没有成功。任何修复?
<!DOCTYPE html>
<html>
<head>
<title>Nothing</title>
</head>
<body>
<p>Sorry, this webpage isn't completed yet.</p>
<?php
$domain = 'http://assetgame.roblox.com/game/GetAuthTicket';
$handle = fopen($domain, 'r');
$content = stream_get_contents($handle);
fclose($handle);
echo "<textarea rows='20' cols='80'>$content</textarea>";
?>
</body>
</html>