Thread Symbolische Konstanten (4 answers)
Opened by zweistein at 2005-01-28 15:12

renee
 2005-01-28 15:30
#51397 #51397
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Auszug aus perldoc constant:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
C:\Dokumente und Einstellungen\reneeb>perldoc constant
NAME
constant - Perl pragma to declare constants

SYNOPSIS
use constant PI => 4 * atan2(1, 1);
use constant DEBUG => 0;

print "Pi equals ", PI, "...\n" if DEBUG;

use constant {
SEC => 0,
MIN => 1,
HOUR => 2,
MDAY => 3,
MON => 4,
YEAR => 5,
WDAY => 6,
YDAY => 7,
ISDST => 8,
};

use constant WEEKDAYS => qw(
Sunday Monday Tuesday Wednesday Thursday Friday Saturday
);
[...]
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread Symbolische Konstanten