Leser: 1
|< 1 2 >| | 13 Einträge, 2 Seiten |
1
2
3
4
5
6
7
8
9
10
11
12
perl -wle'
sub test {
print "test"
}
sub zwei {
print "zwei"
}
$name = "test";
&{$name};
zwei();'
test
zwei
1
2
3
4
5
6
7
8
9
10
11
12
perl -wle'
sub test {
print "test"
}
sub zwei {
print "zwei"
}
$name = "test";
&{$name};
zwei();'
test
zwei
1
2
3
4
if (exists($PubVars{param('ID')})) {
update_my_session();
&{$PubVars{param('ID')}};
}
&{$name};
1
2
3
4
5
6
7
8
9
10
11
12
13
my @attributes = qw(color maximalgeschwindigkeit zylinder);
# generiere die noetigen Methoden
foreach my $attribute (@attributes) {
my $code = sub {
my ($self, $value) = @_;
$self->{ uc($attribute) } = $value if defined $value;
return $self->{ uc($attribute) };
};
no strict 'refs';
*{ $attribute } = $code;
} # foreach # ab hier ist strict wieder aktiv
|< 1 2 >| | 13 Einträge, 2 Seiten |