-
<?php
-
-
/*
-
* Timestamp validator and converter
-
* {cc} Owen Mundy ~ owenmundy.com
-
*
-
*/
-
function convert_date($string)
-
{
-
// make sure it is a string with a number && > 1992-05-07 && < 2033-05-18
-
{
-
// if so convert it to a human-readable date
-
return $d;
-
}
-
else
-
{
-
return false;
-
}
-
}
-
-
print convert_date("1613199869");
-
-
?>