in reply to Re: Help with PHP-to-Perl CPAN bundle
in thread Help with PHP-to-Perl CPAN bundle
foreach my $alias (@array) creates an alias to the @array entry. Mutiple aliases in the loop aren't possible. (In PHP you can do for ($hash => $key, $value) {...} to do multiple aliases)Unless I'm misunderstanding this (not knowing PHP), then what you are looking for here is each. eg:
Or am I way off the mark?while (my ($key, $value) = each %hash ) { .. }
C.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Help with PHP-to-Perl CPAN bundle
by erikharrison (Deacon) on Sep 30, 2004 at 15:05 UTC |