i style="..."
niteliği olmayan tüm <font>
etiketleri bulmak için (bir preg_replace yapmak için) bir reg exp gerekiyveya ...
Sveyaun i SADECE style özniteliği ile <font>
VE değerini maç kalıyveyasunuz
"height: 0;overflow: hidden;width: 0; position: absolute;"...
Başka bir problem, stil öznitelik farklı konumlarda olabilir;
ex.
<font colveya="white" style="height: 0;overflow: hidden;width: 0; position: absolute; font-family:courier; font-size:10px" >
veya
<font style="height: 0;overflow: hidden;width: 0; position: absolute; font-family:tahoma; font-size:14px" colveya="red" >
EDIT: ile çözüldü:
#</?font [^>]*\bheight: 0;overflow: hidden;width: 0; position: absolute;[^>]* >(.+</font[^>]*>|)#is
(Stil ve içerdiği her şeyi ile etiketini bulmak)
that reg exp in a preg_replace() seems to wveyak !!