Free Trial

Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.


  • Create BookmarkCreate Bookmark
  • Create Note or TagCreate Note or Tag
  • DownloadDownload
  • PrintPrint
Share this Page URL
Help

Chapter 1. Perl Pocket Reference > Conversion Functions

1.20. Conversion Functions


chr expr

Returns the character represented by the decimal value expr.


gmtime [ expr ]

In list context, converts a time as returned by the time function to a nine-element list with the time localized for timezone UTC (GMT).

In scalar context, returns a formatted string.

Without expr, uses the current time.

Use the standard module Time::gmtime for by-name access to the elements of the list; see localtime on the next page.


hex expr

Returns the decimal value of expr interpreted as an hexadecimal string. The string may, but need not, start with 0x. For other conversions, see oct below.


localtime [ expr ]

Like gmtime, but uses the local time zone.

Use the standard module Time::localtime for byname access to the elements of the list:

IndexNameDescription
0secSeconds.
1minMinutes.
2hourHours.
3mdayDay in the month.
4monMonth, 0 = January.
5yearYears since 1900.
6wdayDay in week, 0 = Sunday.
7ydayDay in year, 0 = January 1st.
8isdstTrue during daylight saving time.



  

You are currently reading a PREVIEW of this book.

                                                                                        

Get instant access to over
$1 million worth of books and videos.

  

Start a Free Trial


  
  • Safari Books Online
  • Create BookmarkCreate Bookmark
  • Create Note or TagCreate Note or Tag
  • DownloadDownload
  • PrintPrint