PHP4 ve değer içerikleri XPath

0 Cevap php

Ben XML içeriğini almak için çalışıyorum:

$xmlstr = "<?xml version=\"1.0\" ?>
           <article>
             <Art>
               <test>Hello</test>
             </Art>
             <Another>
               <g>gooo</g>
             </Another>
           </article>";
$dom    =domxml_open_mem($xmlstr);


$calcX = &$dom->xpath_new_context();

$cnt = $calcX->xpath_eval($querystring);

foreach ($cnt->nodeset as $node)
{  
    print_r($node);

} 

Ben içerik alabilirsiniz bir yolu var mı sorgu dizesi / / haber / Sanat zaman?

Ne arıyorum olduğunu:

<test>Hello</test>

Ben $ node-> get_content () kullanırsanız, o zaman sonuç Hello.

Ben PHP4 ile çalışıyorum, bu yüzden [PHP5] SimpleXML kullanmak mümkün değilim. $ Düğüm DOMElement.

$node->nodeValue causes: Notice: Undefined property: nodeValue in .php on line 19

0 Cevap