Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
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:
| Index | Name | Description |
|---|---|---|
| 0 | sec | Seconds. |
| 1 | min | Minutes. |
| 2 | hour | Hours. |
| 3 | mday | Day in the month. |
| 4 | mon | Month, 0 = January. |
| 5 | year | Years since 1900. |
| 6 | wday | Day in week, 0 = Sunday. |
| 7 | yday | Day in year, 0 = January 1st. |
| 8 | isdst | True during daylight saving time. |