Hi,
There's been enough confusion, here's the patch again, this time against
5.3, no tests for clarity
http://pear.php.net/~greg/multi.5.3.patch.txt
This patch allows:
<?php
namespace A;
class a {}
namespace B;
class a {}
namespace A;
import B::a as b;
class c extends b;
?>
It doesn't allow:
<?php
$anycode = 1;
namespace A;
?>
so all code must have a namespace declaration. The sole purpose is to
combine files containing namespace declarations.
Greg