PHP - 代码正在保存不正确的数据

时间:2017-08-07 08:13:18

标签: php session

我正在制作登录脚本。所以我在login.php中的内容是

           foreach ($json_decoded->response->players as $player)
            {

                  $_SESSION["steamid"] = "$player->steamid";
                  $_SESSION["steamname"] = "$player->pesonaname";
                  $_SESSION["profileurl"] = "$player->profileurl";
                  $_SESSION["profileimg"] = "$player->avatarmedium";

                }

json具有所需信息,但脚本不是保存信息,而是保存$player->pesonaname。我尝试将信息写入文件并且工作正常,但是当我将其保存到$ _SESSION时它不起作用。我的编码很可能是错误的,尽管我把它从Google中删除了。有谁知道怎么做?

0 个答案:

没有答案