Converting a UNIX Timestamp to Formatted Date String October 11, 2022 by Tarik Try gmdate like this: <?php $timestamp=1333699439; echo gmdate("Y-m-d\TH:i:s\Z", $timestamp); ?>