Thread Undifined value as a symbol reference (10 answers)
Opened by Gast at 2004-08-19 18:08

Gast Gast
 2004-08-19 18:08
#3505 #3505
Hallo Leutz,

hab wiederum folgendes Problem:

Code: (dl )
1
2
3
4
5
6
7
8
9
1:#!/usr/local/bin/perl5.8.0 -w
2:#
3:use FileHandle;
4:
5:my $content="Hallo dies ist ein Test";
6:local $fd;
7:$fd = new FileHandle("test.txt");
8:print $fd "\n------------------------\n$content";
9:$fd->close();


Dies is nur ein Testscript, jedoch ist im richtigen script sowas ähnliches...ich habe folgendes problem:

Code: (dl )
Can't use an undefined value as a symbol reference at test_filehand.pl line 8


Davor hatte ich mich informiert und mir sagt jmd ich solle das $fd von my auf local stellen jedoch bekomme ich immer noch die gleiche fehlermeldung.

hat jmd zu diesem verhalten eine lösung?

greetz
anty

View full thread Undifined value as a symbol reference