0

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

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">
4

2 回答 2

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属性应该是可选的。

于 2014-11-21T15:18:27.740 回答
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();
于 2014-11-21T13:59:28.230 回答