0

別の問題があります。

次のphpクラスからデータを取得しようとすると、内部サーバーエラーが発生します。

<?php
/**
 * Created by JetBrains PhpStorm.
 * User: -Ryuk-
 * Date: 21/11/12
 * Time: 17:08
 * To change this template use File | Settings | File Templates.
  */
class game
{
    private $_serverStatus = "Online";
    private $_numOnline = "32";
    private $_maxPlayers = "50";
    private $_messageOfTheDay = "Welcome to game!";
    private $_Players = "Falcubar2011;Zacardor;";

public function GetStatus()
{
    return this::$_serverStatus;
}

public function GetNumOnline()
{
    return this::$_numOnline;
}

public function MaxPlayers()
{
    return this::$_maxPlayers;
}

public function GetMOTD()
{
    return this::$_messageOfTheDay;
}

public function GetPlayers()
{
    return this::$_Players;
}

public function GetServiceColour()
{
    if(this::GetStatus() != "Online")
        return "#FF0000";
    else
        return "#008000";
}
}

私はそれをこのように呼ぼうとしています(index.phpで)私はこれを取り除いたので、あなたはすべてのがらくたを取得しません。

$mc = new game();

  <div id="Stats">
        <div id=roundedbox>
            <h1>Info</h1>
            <p>
            <p><strong>IP:</strong> play.game.com</p>
            <br>

            <p>Slots: <?php print $mc->GetNumOnline(); ?> / <?php print $mc->MaxPlayers(); ?></p>
            <br>
            <p>Status: <?php print $mc->GetStatus(); ?></p>
            <br>
            <p>MOTD: <?php print $mc->GetMOTD(); ?></p>
            </div>
    </div>

誰もが持っているこの問題を修正する方法を知っていますか?

4

1 に答える 1

1

あなたの構文thisは完全に間違っています。それ以外の

return this::$_serverStatus;

あなたが使用している必要があります

return $this->_serverStatus;

同様に、への内部呼び出しGetStatus()

if ($this->GetStatus() != 'Online') {
    // ...

ここから読み始めることをお勧めします - http://php.net/manual/en/language.oop5.basic.php

于 2013-01-09T03:47:32.527 に答える