STRPTIME(DatumZeit
|Zeitzone
|Format
)
(ab Asterisk 1.4 verfügbar)
Wandelt einen formatierten Datums-/Zeit-String unter Berücksichtigung der Zeitzone in einen Unix-Timestamp um.
; Datum/Zeit im Format JJJJ-MM-TT HH:MM:SS in ${zeit} speichern: exten => 123,1,Set(zeit=${STRFTIME(${EPOCH},Europe/Berlin,"%Y-%m-%d %H:% M:%S")}) ; ${zeit} wieder in einen Timestamp umwandeln: exten => 123,n,Set(timestamp=${STRPTIME(${zeit}|Europe/Berlin|%Y-%m-%d % H:%M:%S)}
Interner Hilfetext zu dieser Applikation in Asterisk 1.4: -= Info about function 'STRPTIME' =- [Syntax] STRPTIME(<datetime>|<timezone>|<format>) [Synopsis] Returns the epoch of the arbitrary date/time string structured as descri bed in the format. [Description] This is useful for converting a date into an EPOCH time, possibly to pas s to an application like SayUnixTime or to calculate the difference between t wo date strings. Example: ${STRPTIME(2006-03-01 07:30:35|America/Chicago|%Y-%m-%d %H:%M:%S)} ret urns 1141219835 Differenz zum internen Hilfetext in Asterisk 1.2: -- in Version 1.2 nicht vorhanden -- |
Siehe auch.
„STRFTIME()
“