Decrypting date

0

I have a panel, and it encrypts the date, and wanted to know how I can decrypt it to show on my site.

Encrypted date: 1437619904

I wanted to put it in the normal way.

    
asked by anonymous 24.07.2015 / 10:47

1 answer

5

This is the date generated by the time() function.

  

Returns the current time measured in the number of seconds since the Unix era   (January 1 1970 00:00:00 GMT).

You can convert to normal date using date() function:

echo date('m/d/Y H:i:s', 1437619904);
    
24.07.2015 / 11:36