0
我怎樣才能得到一個字符串波紋的貨幣值使用php xpath?Php Xpath - 如何獲得特定值?
<div class="detalheDir2">
<div class="preco">
R$
<script type="text/javascript">document.write(aZ427014992694557())</script>
24,90
</div>
</div>
我想只是24,90
我使用的查詢
$xpath->query("descendant::div[@class='detalheDir2']/div[@class='preco']/text()", $child);
問題是當我使用文本()我收到只是R $,如果我刪除文本()我收到R $ ocument.write(aZ427014992694557()) – adrianogf
我不知道你是怎麼稱呼這一切,[見這個演示](http://codepad.viper-7.com/13y9MG),這是我將如何做到這一點。從'$ xpath-> query()'返回的東西是一個'DOMNodeList'實例,如果它包含多個元素,您可以使用'foreach'來獲取單個的DOMNode。 – complex857