Re: A question about the dumplicated named global variables
Feng He <[email protected]>
| Newsgroups | gmane.comp.apache.mod-perl |
|---|---|
| Message-ID | <[email protected]> |
>
> BTW, to avoid confusion I'd prevent the import() function from being
> called in startup.pl by either
>
> б═б═use Config1 ();
> б═б═use Config2 ();
>
> or
>
> б═б═BEGIN {
> б═б═б═б═require Config1;
> б═б═б═б═require Config2;
> б═б═}
>
> Torsten
Thanks Torsten.
So if I don't use them in the startup.pl, then no conflict will happen?
Regards.