我高清xml文件,如何使用獲取文件內容方法獲得標題字段中的值..我只是想獲得值「TomTom XXL 550M - 美國,加拿大&墨西哥汽車GPS。(全新)」閱讀xml使用文件獲取內容
<Title>
TomTom XXL 550M - US, Canada & Mexico Automotive GPS. (Brand New)
</Title>
我的代碼
$xmlstr = file_get_contents($source);
$parseXML = new SimpleXMLElement($xmlstr);
print($parseXML);
// load as file
$parseXMLFile = new SimpleXMLElement($source,null,true);
[基本SimpleXML的用法](http://php.net/manual/en /simplexml.examples-basic.php)從PHP.net –
只使用http://php.net/manual/de/function.simplexml-load-file.php –