How to add minutes to date time PHP

Add minutes to date time PHP- Adding any minutes to a given time is very similar to adding any days to a given date. You only need to use the specific DateInterval format string.

Code to add minutes to date time in PHP-

$time = new DateTime(2021-06-18 11:23);
$time->add(new DateInterval("PT150M"));
echo $time->format('Y-m-d H:i:s');