クラスでロールを作成する単純な変数を使用したいのですが、これは機能していません。
$GLOBALS['world'] = "Isara";
class Character{
var $name;
var $status;
static $content;
function __construct($name){
$this->name=$name;
$this->getCharInfo();
}
private function getCharInfo(){
if(empty(self::$content)){
self::$content = file_get_contents("http://www.tibia.com/community/?subtopic=worlds&world=$GLOBALS['world']",0);