how to get UTC timestamp in php.. The below doesn't returns UTC timestamp, it is displaying some other timestamp
 <?php
    date_default_timezone_set('UTC');
    echo strtotime("now");
    ?>
i think, setting default timezone as not been effective?
 
    