Desplegar xml con yii?



   AUTOR PREGUNTA

Publicado 15 mayo 2014 - 21:47

¿De qué forma puedo desplegar un document XML con Yii framework?


¿Tienes la misma pregunta? Yo también

 

Publicado 16 mayo 2014 - 03:41

Debes capturar el XML y luego utilizar htmlentities para convertirlo a algo que HTML pueda interpretar:

<?php
public function actionView()
$output = $myXMLString;
$output = htmlentities($output);
$this->render('view',array(
'xmlString'=>htmlentities($output),
));

   AUTOR PREGUNTA

Publicado 16 mayo 2014 - 04:43

Gracias Felipe, no sabia que lo podia hacer así jeje