我不知道这是怎么回事,以前从未见过它。
在下面的代码中,代码打印出'oops ---'但它以某种方式运行该函数。我不明白if和else是如何运行的,真的很困惑。如果需要,我可以在类中提供代码。
if($functions->checkDBstats($_GET['name'])) {
$functions->update($_GET['name'],$functions->getPlayerInfo($_GET['name']));
echo "Your account has been updated! Visit your page <a href='/osrstracker/name/". $_GET['name'] ."'>here</a>";
} else {
echo "Oops, either you havess already updated your account within the past 12 hours or we have messed something up!";
}
我测试的另一件事是向print_r
添加$functions->update
来调试它但它没有打印但更新功能运行!!我不知道最新情况= /任何可以提供帮助的人?