How would I go about converting a date in unix time to a date in Texis?
convert unix timestamp to Texis date
convert unix timestamp to Texis date
Use convert(). Depending on the date format, that should do it. Try <$texisTime = (convert($unixTimeString, 'date' ))>.
convert unix timestamp to Texis date
Getting an "out of range" error:
<$unixtimestamp="1374503628">
<$convdate=(convert($unixtimestamp, 'date'))>
<$unixtimestamp="1374503628">
<$convdate=(convert($unixtimestamp, 'date'))>
convert unix timestamp to Texis date
Try converting to long first
convert(convert($unixtimestamp, 'long' ), 'date' )
convert(convert($unixtimestamp, 'long' ), 'date' )
convert unix timestamp to Texis date
Thanks, that worked.