At 05:10 AM 7/17/2001 +0000, Mark Morgan wrote:
>Raptor <[EMAIL PROTECTED]> wrote:
> > I mean something like this :
>
> > instead of :
> > #$Request->{Params}
> > local *myhash = \%{$$Request{Params}};
>
> > my %myhash alias %{$$Request{Params}};#see - it is my (now as far as I know
> > u can't have it 'my')
>
>You don't need a typeglob there; you can do the following, which does work
>with 'my':
>
>my %myhash = %{$Request->{Params}};

Originally he wanted an alias, and that won't do it. You'll flatten and 
unflatten, and changes to %myhash won't be reflected in the original.

                                        Dan

--------------------------------------"it's like this"-------------------
Dan Sugalski                          even samurai
[EMAIL PROTECTED]                         have teddy bears and even
                                      teddy bears get drunk

Reply via email to