使用PHP将txt转换为sitemap.xml

时间:2014-11-21 13:25:07

标签: php xml text sitemap sitemap.xml

假设我有文本数据库包括:

http://example.com,monthly,0.3
http://example.com/one,daily,0.5
http://example.com/two,weekly,0,8

我想将我的文本数据库转换为sitemap.xml。

$fp = fopen('./database.txt', 'r');
$xml = new XMLWriter;
$xml->openURI('./sitemap.xml');
$xml->setIndent(true); 
$xml->startElement('urlset');
while ($line = fgetcsv($fp)) {
   if (count($line) < 4) continue;
   $xml->startElement('url');
   $xml->writeElement('loc', $line[0]);
   $xml->writeElement('changefreq', $line[1]);
   $xml->writeElement('priority', $line[2]);
echo $xliff->getDocument();
   $xml->endElement();
}
$xml->endElement();

我试过这段代码,我无法添加这部分......

<?xml version="1.0" encoding="UTF-8"?>
<urlset 
  xmlns='http://www.sitemaps.org/schemas/sitemap/0.9' 
  xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'     
  xsi:schemaLocation='http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">

2 个答案:

答案 0 :(得分:0)

您可以使用http://php.net/manual/en/function.xmlwriter-start-attribute-ns.php 或使用DOM:

$fp = fopen('./database.txt', 'r');
$dom = new DOMDocument();
$dom->formatOutput = true;
$urlset = $dom->createElementNS('http://www.sitemaps.org/schemas/sitemap/0.9', 'urlset');
$dom->appendChild($urlset);
while ($line = fgetcsv($fp)) {
    var_dump($line);
    $url = $dom->createElement('url');
    $urlset->appendChild($url);
    $url->appendChild($dom->createElement('loc', $line[0]));
    $url->appendChild($dom->createElement('changefreq', $line[1]));
    $url->appendChild($dom->createElement('priority', $line[2]));
}
echo $dom->saveXML();

答案 1 :(得分:0)

xmlns='http://www.sitemaps.org/schemas/sitemap/0.9'是名称空间定义。它定义了所有元素节点(没有前缀是此格式的一部分。您可以将元素标记名称读作{http://www.sitemaps.org/schemas/sitemap/0.9}:urlset{http://www.sitemaps.org/schemas/sitemap/0.9}:url,...

它允许混合XML格式而不会发生冲突。

要使用需要命名空间定义的XML阅读器创建XML节点,您必须使用方法的* NS变体。这与DOM略有不同,在DOM中,您始终提供命名空间,并根据需要添加命名空间定义。

$csv = <<<'CSV'
http://example.com,monthly,0,3
http://example.com/one,daily,0,5
http://example.com/two,weekly,0,8
CSV;
$lines = array_map('str_getcsv', explode("\n", $csv));

$xmlns = 'http://www.sitemaps.org/schemas/sitemap/0.9';
$xml = new XMLWriter;
$xml->openMemory();
$xml->setIndent(true); 
$xml->startElementNS(NULL, 'urlset', $xmlns);
$xml->writeAttributeNS(
  'xsi', 
  'schemaLocation', 
  'http://www.w3.org/2001/XMLSchema-instance',
  'http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd'
);

foreach ($lines as $line) {
   if (count($line) < 4) continue;
   $xml->startElement('url');
   $xml->writeElement('loc', $line[0]);
   $xml->writeElement('changefreq', $line[1]);
   $xml->writeElement('priority', $line[2]);
   $xml->endElement();
}
$xml->endElement();

echo $xml->outputMemory();

输出:

<urlset xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
 <url>
  <loc>http://example.com</loc>
  <changefreq>monthly</changefreq>
  <priority>0</priority>
 </url>
 <url>
  <loc>http://example.com/one</loc>
  <changefreq>daily</changefreq>
  <priority>0</priority>
 </url>
 <url>
  <loc>http://example.com/two</loc>
  <changefreq>weekly</changefreq>
  <priority>0</priority>
 </url>
</urlset>

注意:xsi:schemaLocation属性应该是可选的。