Thread localtime (5 answers)
Opened by Froschpopo at 2007-06-21 15:07

sid burn
 2007-06-21 15:23
#77725 #77725
User since
2006-03-29
1520 Artikel
BenutzerIn

user image
Indirekt hat pq ja schon die Antwort genannt. ;)

Code: (dl )
perl -e 'print (localtime)[2];'

Die Öffnenden Klammern werden als Funktionsaufruf zu "print" also "print()" erkannt.

Und ein "print()[2]" macht wenig sinn.

Korrekt wäre folgendes:
Code: (dl )
perl -wle 'print( (localtime)[2] )'


Du musst also explizit die Klammern von print auch noch hinschreiben damit er weiß was du willst.\n\n

<!--EDIT|sid burn|1182425080-->
Nicht mehr aktiv. Bei Kontakt: ICQ: 404181669 E-Mail: perl@david-raab.de

View full thread localtime