<?php

$txt = 'Hello World!';

class Mensagem
{
	public function mostrar1()
	{
		global $txt;
		echo $txt;
	}
	
	public function mostrar2()
	{
		$msg = $GLOBALS['txt'];
		echo $msg;
	}
}

$msg = new Mensagem();
$msg->mostrar1();
$msg->mostrar2();