Need to convert the current time in IST (India Standard Time), stored in a PHP variable to UTC time, and store it to another variable using PHP.
date_default_timezone_set('Asia/Kolkata');
$Present = date('Y-m-d H:i');
echo $Present; //to be converted to utc
$GMT = gmdate('Y-m-d H:i', strtotime($Present));