Ben böyle bir dizesi vardır:
<span style="font-weight: bold;">Foo</span>
Bunu yapmak için PHP kullanmak istiyorum
<strong>Foo</strong>
Diğer ... span s etkilemeden.
span
Bunu nasıl yapabilirim?
$text='<span style="font-weight: bold;">Foo</span>'; $text=preg_replace( '/<span style="font-weight: bold;">(.*?)<\/span>/', '<strong>$1</strong>',$text);
Note: sadece örneğin çalışır.