Im a bit stumped on how to make a string uppercase in php while not making the markup uppercase.
So for example:
<p>Chicken & <a href="/cheese">cheese</a></p>
Will become
<p>CHICKEN & <a href="/cheese">CHEESE</a></p>
Any advice appreciated, thanks!