this might seems to be trivilar, but I havent found a way yet... given this code:
var timestamp = 1579120218;
console.log(timestamp);
console.log(new Date(timestamp * 1000));
1579120218 Thu Jan 16 2020 07:30:18 GMT+1100 (GMT+11:00)
But as Php say, its:
2020-01-15 21:30:18
so I need to have that time without timezone offset (in JS by all means)