1
我有以下代碼,但我想要適當的站點地圖標準。如何創建動態的XML站點地圖
我的代碼
$xml = new DomDocument('1.0', 'utf-8');
$xml->formatOutput = true;
$products= $xml->createElement('url');
$product = $xml->createElement('url');
$xml->appendChild($products);
$products->appendChild($product);
$product->appendChild(new DomAttr('loc', '123'));
$xml->save("data.xml");
但表示代碼的輸出是LILE:
<?xml version="1.0" encoding="utf-8"?>
<url>
<url loc="123"/>
</url>
但我想下面的標準...
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>http://www.example.com/</loc>
<lastmod>2012-08-11T04:08:53+01:00</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
</urlset>
請在這方面幫助我。
工作正常..請從下面的行「..ap/0.9')));」刪除額外的「)」 –