- 论坛徽章:
- 0
|
- #!/usr/bin/perl
- use strict;
- use Data::Dumper;
- my $hashs;
- $hashs->{'abc'}->{'thanks'} = 1;
- $hashs->{'bcd'}->{'good'} = 2;
- my @item = (1,2,3);
- my $results;
- foreach my $item (@item){
- if($item == 2){
- $hashs->{'abc'}->{'thanks'} = 3;
- }
- $results->{$item}->{product} = $hashs;
- }
- print Dumper($results);
复制代码
得到的结果是:
$VAR1 = {
'1' => {
'product' => {
'bcd' => {
'good' => 2
},
'abc' => {
'thanks' => 3
}
}
},
'3' => {
'product' => $VAR1->{'1'}{'product'}
},
'2' => {
'product' => $VAR1->{'1'}{'product'}
}
};
但其实我想得到的是:
'1' => {
'product' => {
'bcd' => {
'good' => 2
},
'abc' => {
'thanks' => 1
}
}
},
'2' => {
'product' => {
'bcd' => {
'good' => 2
},
'abc' => {
'thanks' => 3
}
}
},
……
费解……多谢帮忙了…… |
|