Convert timestamp to readable date/time PHP

Use PHP’s date() function.

Example:

echo date('m/d/Y', 1299446702);

Leave a Comment