PHP $ _GET麻烦

时间:2016-09-18 22:33:45

标签: php arrays forms post get

所以我正在开发一个名为Hypixel API的网站。

当我使用一个用户可以输入名称的论坛时,我收到了

的回复
Player == nullArray ( [0] => Array ( [success] => [cause] => [status] => 204 ) [1] => Array ( [success] => [cause] => [status] => 204 ) )

这是我的代码:

<?php

$ign = $_GET['ign'];

include_once('HypixelPHP.php');
$HypixelPHP = new HypixelPHP\HypixelPHP(['api_key' => 'BLOCKED']);
// get a player object using the hypixel api object
$player = $HypixelPHP->getPlayer([\HypixelPHP\KEYS::PLAYER_BY_NAME => '$ign']);
if ($player != null) {
    echo 'View stats for ' . $player->getFormattedName(true, true);
    echo '<br>';
    echo '<h1>GAME STATS</h1>';
    echo '<h3>Mega Walls</h3>';
    echo 'Wins: ' . $player->getStats()->getGameFromID(\HypixelPHP\GameTypes::WALLS3)->getInt('wins');
    echo '<br>';
    echo 'Kills: ' . $player->getStats()->getGameFromID(\HypixelPHP\GameTypes::WALLS3)->getInt('kills');
    echo '<br>';
    echo 'Final Kills: ' . $player->getStats()->getGameFromID(\HypixelPHP\GameTypes::WALLS3)->getInt('final');
    echo '<br>';

} else {
    echo 'Player == null';
    print_r($HypixelPHP->getUrlErrors());
}

?>

<!DOCTYPE html>
<html>
    <head>
        <link rel="stylesheet" href="style.css" />
    </head>
</html>

在表格中,我的名字确实正确。

这应该是输出:

The output

还有其他一些东西。

如果你们能提供帮助,谢谢!

1 个答案:

答案 0 :(得分:0)

问题是你传递的是单引号字符串&#39; $ ign&#39;。这忽略了您为$ ign设置的变量。

http://php.net/manual/en/language.types.string.php