Is it possible to create a global namespace alias?

Is it possible to create a global namespace alias?

am 04.10.2010 16:24:08 von Matt Palermo

------=_NextPart_000_0042_01CB63AE.4737F520
Content-Type: text/plain;
charset="utf-8"
Content-Transfer-Encoding: quoted-printable

ï»=BFIs it possible to create a global namespace alias in PHP or =
does the alias have to be defined in EVERY file that I use? Here is an =
example:

file: main.php
use \this\is\my\custom\namespace\Item as nsItem;
?>


file: index.php
require_once â€=9Cmain.phpâ€=9D;

// Attempt to use namespace alias defined in main.php file
nsItem::test();
?>


The above code doesnâ€=99t work for me. The namespace alias defined =
in the main.php file isnâ€=99t accessible in the index.php file. Is =
there a way to make the â€=9CnsItemâ€=9D alias a =
â€=9Cglobalâ€=9D one, so that I donâ€=99t have to define it =
in EVERY file that I want to use?

-Matt
------=_NextPart_000_0042_01CB63AE.4737F520--