cat_crash
Новичок
Имеем не самую простую XML структуру:
и код:
На выходе имеем:
ВОпрос:
как мне "увидить" в переменной: "and some text here" который есть в исходном XML ?
PHP:
$xml='
<page>
<div class="cafe-item">
<span>text</span> and some text here
</div>
</page>
';
PHP:
$xpath="//*/div[@class='cafe-item']/text()";
$simplexml = new SimpleXMLElement($xml);
$res=$simplexml->xpath($XPath_query);
Код:
[1] => SimpleXMLElement Object
(
[@attributes] => Array
(
[class] => cafe-item
)
[span] => text
)
как мне "увидить" в переменной: "and some text here" который есть в исходном XML ?