esta interezante pero no entendi T.T perdon. Ya con mas calma lo estado leyendo y para probar hice este codigo:
Código PHP:
Ver original<?php
$p=$_POST['code'];
$dom = new DOMDocument();
@$dom->loadHTML($p);
//Evaluate Anchor tag in HTML
$xpath = new DOMXPath($dom);
$imgs = $xpath->evaluate("/html/body//img");
for ($i = 0; $i < $imgs->length; $i++) {
$img = $imgs->item($i);
if ($img->hasAttribute("alt") != true) {
$img->setAttribute("alt", "");
}
if ($img->hasAttribute("border") != true) {
$img->setAttribute("border", "0");
}
if ($img->hasAttribute("style") != true) {
$img->setAttribute("style", "display:block;");
}
}
// save html
$p=$dom->saveHTML();
y si me ha servido ahora solo voy a implemetar en uan funcion alguan sugerencia seria muy bien recibida.