私は必要なものを手に入れません。varを必要とする静的メソッド
class config
{
private $config;
# Load configurations
public function __construct()
{
loadConfig('site'); // load a file with $cf in it
loadConfig('database'); // load another file with $cf in it
$this->config = $cf; // $cf is an array
unset($cf);
}
# Get a configuration
public static function get($tag, $name)
{
return $this->config[$tag][$name];
}
}
私はこの取得しています:
Fatal error: Using $this when not in object context in [this file] on line 22 [return $this->config[$tag][$name];]
を、私はこの方法でメソッドを呼び出す必要があります:config::get()
...
静的関数はクラスのコンテキストで呼び出され、特定のインスタンスへの参照はありません。 – zzzzBov