ЭЛЕКТРОННАЯ БИБЛИОТЕКА КОАПП |
Сборники Художественной, Технической, Справочной, Английской, Нормативной, Исторической, и др. литературы. |
3.2.88 localtimelocaltime This function converts the value returned by time to a nine-element list with the time corrected for the local time zone. It's typically used as follows: ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time); All list elements are numeric, and come straight out of a
$thisday = (Sun,Mon,Tue,Wed,Thu,Fri,Sat)[(localtime)[6]]; The Perl library module Time::Local contains a subroutine, In scalar context, localtime returns a ctime(3)-like string based on the localtime value. For example, the date command can be emulated with: perl -e 'print scalar localtime' See also |