I had this construction error when trying to creating a new DateTime object using a timestamp:
Exception: DateTime::_construct(): Failed to parse
change your code to this
$start_date = new DateTime( "@" . $dbResult->db_timestamp );
and it will work fine