Ver Mensaje Individual
  #3 (permalink)  
Antiguo 24/09/2009, 09:30
sciutomaxi
 
Fecha de Ingreso: junio-2007
Mensajes: 152
Antigüedad: 16 años, 10 meses
Puntos: 0
Respuesta: Buscar Texto en un XML

muchas gracias funciono

function search($xml,$texto)
{
$etiquetas=array();
foreach ($xml as $tag)
{
if(eregi($texto,$tag))
array_push($etiquetas, $tag->getName());
}
return $etiquetas;
}