Christian Kruse: Counter mit Macken

Beitrag lesen

你好 Christian,

Aber wie mach ich es dann hier?

open(COUNT, ">$root/cgi-bin/counter/count.txt");
flock COUNT, 2;
print COUNT "$zaehlerstand";
close(COUNT);

Oder muss es da gar nicht hin?

Da solltest du anders vorgehen:

  
open COUNT,'+<', "$root/cgi-bin/counter/count.txt" or die "error: $!";  
flock COUNT, 2 or die "flock: $!";  
truncate COUNT,0;  
close COUNT;  

再见,
 克里斯蒂安

--
Neue Hardware eingebaut | Der dritte mir bekannte Block-Nutzer
On the day *I* go to work for Microsoft, faint oinking sounds will be heard from far overhead, the moon will not merely turn blue but develop polkadots, and hell will freeze over so solid the brimstone will go superconductive. (Eric Raymond als Antwort auf ein Job-Angebot von MS)
http://wwwtech.de/