Simple question but this is killing my time.
Any simple solution to add 30 minutes to current time in php with GMT+8?
$dateTime = new DateTime('now', new DateTimeZone('Asia/Kolkata')); echo $dateTime->modify("+10 minutes")->format("H:i:s A");