getLastLogin() return value

Permalink
anyone know what value is returned? miliseconds?
or a way to get the date from it

mikeyt55
 
enlil replied on at Permalink Reply
enlil
I believe it returns datetime. Never played with it though...
mikeyt55 replied on at Permalink Reply
mikeyt55
hmm i seem to get 1395257717
cjramki replied on at Permalink Reply
cjramki
Hello,

It is returns timestamp value in seconds format.

all you need is to just convert seconds to timestamp format using php's data() function.

Try this code,
echo date("d-m-Y H:i:s", '1395257717');

the above code will say,
20-03-2014 01:05:17