Ver Mensaje Individual
  #2 (permalink)  
Antiguo 27/06/2009, 10:12
alka33
 
Fecha de Ingreso: junio-2009
Mensajes: 4
Antigüedad: 14 años, 11 meses
Puntos: 0
Respuesta: xml a xsl en php

hola amigo claro que si prueba con esta funcion cualquier cosa busca mas sobre las clases
DOMDocument,XSLTProcessor
function retornarXslt(){
$xml = new DOMDocument;
$xml>load("xml.xml");
$xsl = new DOMDocument;
$xsl->load("xsl.xsl");
$proc = new XSLTProcessor;
$proc->importStyleSheet($xsl);
return $proc->transformToXML($xml);
}