Thread Fehlermeldung bei printf
(5 answers)
Opened by Duff at 2007-02-01 13:21
[quote=Duff,01.02.2007, 12:21]
Code: (dl
)
Use of uninitialized value in printf Kann ich das irgendwie abstellen?[/quote] Ja, entweder mit no warnings 'uninitialized'; aber das wäre nicht schön ... besser wäre du prüfst vorher jede Variable auf defined() und setzt einen Defaultwert, falls die Variable undefiniert ist. $var = '<DEFAULT WERT>' unless defined $var;\n\n <!--EDIT|opi|1170337626--> What is a good module? That's hard to say.
What is good code? That's also hard to say. One man's Thing of Beauty is another's man's Evil Hack. |