Thread Virtuelle Hosts hinzufügen/löschen with a CGI: concerning Apache?s vhosts.conf file (13 answers)
Opened by pearl-man at 2005-12-21 09:45

pq
 2005-12-22 18:41
#6415 #6415
User since
2003-08-04
12208 Artikel
Admin1
[Homepage]
user image
[quote=Strat,22.12.2005, 16:12]wie gefaellt euch eigentlich folgendes?
Code: (dl )
1
2
3
4
5
6
7
open (VHOSTS, "<", $vhosts_file)
 or &error("Kann die Datei '$vhosts_file' nicht lesen: $!", 1);
my @vhosts = do {
 local $/ = "\n\n";
 <VHOSTS>;
};
close(VHOSTS);
[/quote]
naja... =)
Code: (dl )
1
2
3
4
5
6
my @vhosts = do {
 open my $vhosts, '<', $vhosts_file
   or error("Kann die Datei '$vhosts_file' nicht lesen: $!", 1);
 local $/ = '';
 <$vhosts>;
};

spart das close, und setzt $/ noch etwas sinnvoller.
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wiki:Wie frage ich & perlintro Wiki:brian's Leitfaden für jedes Perl-Problem

View full thread Virtuelle Hosts hinzufügen/löschen with a CGI: concerning Apache?s vhosts.conf file