我需要创建一个php脚本,从wordpress博客的sitemap.xml打开一个随机页面,但我真的不知道如何做到这一点。有人可以帮我吗?
站点地图位于此处:http://designsuperstars.net/sitemap.xml
欢迎任何帮助, 波格丹
答案 0 :(得分:1)
您可以尝试这个简单的脚本
$url = "http://designsuperstars.net/sitemap.xml" ;
$xml = simplexml_load_file($url);
$link = $xml->url[mt_rand(0,count($xml->url)-1)]->loc ; // Get Random Location
Header("Location:" . $link); // Load any page