时间:2021-07-01 10:21:17 帮助过:10人阅读
.html/article/hardware/008.html
http://www.niutuku.com/
http://www.niutuku.com/
http://www.niutuku.com/
3
if ( file_exists ( 'out.xml' )) {这个只能取到里面的值 想改里面的值建议去下个simple_html_dom或者phpQuery
$xml = simplexml_load_file ( 'out.xml' );
foreach ($xml->pic->list as $key => $value) {
$attr = (array) $value->attributes ();
var_dump($attr[[email protected]']['smallinfo']);
}
} else {
exit( 'Failed to open test.xml.' );
}
$s =<<< XML.html/article/hardware/008.html
http://www.niutuku.com/
http://www.niutuku.com/
http://www.niutuku.com/
3
XML;
$xml = simplexml_load_string($s);
for($i=0; $ipic->list); $i++) {
$xml->pic->list[$i] = $i;
$t = $xml->pic->list[$i]->attributes();
$t['smallpath'] = $i;
}
echo $xml->asXML();
0
1
2
3
3