我知道這個問題以前已經被問到過,但我無法完成工作。我在PHP文件中使用simplexml和xpath。我需要從包含其子節點中的文本的節點獲取文本。所以,結果應該是:PHP XML:獲取節點及其子節點的文本
Mr.Smith bought a white convertible car.
這裏是XML:
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="test9.xsl"?>
<items>
<item>
<description>
<name>Mr.Smith bought a <car>white</car> <car>convertible</car> car.</name>
</description>
</item>
</items>
PHP的,這不是工作是:
$text = $xml->xpath('//items/item/description/name');
foreach($text as &$value) {
echo $value;
}
請幫幫忙!
發佈電流輸出 – RomanPerekhrest