perl -MExtUtils::Installed -le ‘for(ExtUtils::Installed->new()->modules()){print}’
Archive for the 'Perl' Category
05
Apr
Timelocal in Perl
Perl und ich habe eine ganz *besondere* Beziehung ;^)
use Time::Local;
$time = timelocal($sec,$min,$hours,$mday,$mon,$year);
$time = timegm($sec,$min,$hours,$mday,$mon,$year);
# $mon geht von 0 - 11
Dmitry Stogov beschreibt in diesem Zend Artikel wie man Perl Code / den Perl Interpreter in einem PHP Skript nutzen kann. Da frage ich mich ob CPAN eine Alternative zu PEAR darstellt? ;)
