How to parse all URLs from sitemap XML file in PHP

1 Answer

0 votes
$xml = simplexml_load_string(file_get_contents("c:\\xampp\htdocs\shortinfos\\sitemap.xml"));

foreach ($xml->url as $url) {
	echo $url->loc . "<br>";
}



/*
run:

https://www.shortinfos.com/search.php?q=css+align+button+right
https://www.shortinfos.com/search.php?q=img+width+html
https://www.shortinfos.com/search.php?q=import+regex+vb.net
https://www.shortinfos.com/search.php?q=initialize+object+javascript
https://www.shortinfos.com/search.php?q=javascript+init+array
https://www.shortinfos.com/search.php?q=php+set+to+write+hebrew+in+mysql

*/

 



answered Nov 16, 2020 by avibootz

Related questions

1 answer 385 views
3 answers 402 views
1 answer 260 views
1 answer 211 views
1 answer 221 views
...