Ver Mensaje Individual
  #10 (permalink)  
Antiguo 22/02/2008, 16:27
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Re: Duda SimpleXML

Edito:

Con este código me deja accesar al titulo:
Código PHP:
<?php

$xml 
"<?xml version='1.0'?>
<root>
<ns:book xmlns:ns=\"http://quickstart.samples/xsd\">
<ns:title>Titulo</ns:title>
</ns:book>
<title>titlea</title>
</root>"
;

$xml simplexml_load_string$xml );
$ns $xml->getNamespacestrue );
$xml->registerXPathNamespace('c'$ns['ns']);
$title $xml->xpath('//c:title');
echo 
$title[0];
?>
Saludos.

Última edición por GatorV; 22/02/2008 a las 16:34