i am trying to get date from a timestamp which is coming from an api ,but it will shows the wrong date.
<?php
//its from the api also its timestamp of the today
$timestamp="1460364355000";
// but it will shows the wrong date.
echo date('Y/m/d',$timestamp);
?>
When i check the above timestamp this website it will shows the correct date ,but using php i will get the wrong date.