How to define and use custom function date to show formatted date in PHP

1 Answer

0 votes
function _date_($format, $timestamp = null){
    $dt = !isset($timestamp) ? date($format) : date($format, $timestamp);
    return $dt;
}

echo _date_("d-m-Y");
echo "<br />";
echo _date_("d-m-Y", 11744473600);

/*

run:

07-11-2018
11-11-1933

*/

 



answered Nov 7, 2018 by avibootz
...