replace with tag in php

I want to replace p tag with div tag. if p tag has any attributes like id , class or style tag this attributes should be untouched. Just replace opening and closing ‘p’ tag with opening and closing ‘div’ tag.

e.g.

<p style="font-weight:600">2021 was tough for everyone, especially <span>people working</span> in the retail sector, so we want to start your <strong>2022</strong> with a bang!</p>

<p class="test">The <span style="font-size:18px;color:blue">team</span> would like to invite you to an evening with your peers in the industry to discuss all things retention marketing, CRM strategy, trends, campaigns and more.</p>

should be changed to:

<div style="font-weight:600">2021 was tough for everyone, especially <span>people working</span> in the retail sector, so we want to start your <strong>2022</strong> with a bang!</div>

<div class="test">The <span style="font-size:18px;color:blue">team</span> would like to invite you to an evening with your peers in the industry to discuss all things retention marketing, CRM strategy, trends, campaigns and more.</div>