I have an string date like this: 2015/12/20 13:58:59
I try to convert timestamp:
$idate = $user->multiexplode(array("/"," ",":"),strip_tags("2015/12/20 13:58:59"));
//mktime( $hour , $minute , $second , $month , $day , $year , $is_dst );
$timestamp = mktime($idate[3],$idate[4],$idate[5],$idate[1],$idate[2],$idate[0]);
And now I try to convert real date:
echo 'new date: '.jdate('Y/n/j H:i:s',$timestamp);
Ok...it works but there is a problem!
according of time server,I get variable time.
for examle for location +1 GMT: 2015/12/20 14:58:59
for -1 GMT: 2015/12/20 11:58:59
I want for all server print 2015/12/20 13:58:59
again