0
<?php
include 'conexao.php';
include 'acoes.php';
$sql = mysql_query("select nome, nota from aluno");
$a = 0;
while ($string = mysql_fetch_array($sql))
{
if ($a == 0)
{
$data = '<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">';
$data .= '<?xml version=\'1.0\' encoding=\'UTF-8\'?>';
$data .= '<urlset>';
}
$data .= '<url>';
$data .= '<loc>http://www.escola.com.br/' . removerosAcentos($string['nome']);
$data .= $string['nota'] . '</loc>';
$data .= '<changefreq>weekly</changefreq>';
$data .= '</url>';
$a += 1;
if ($a >= 45000)
{
$data .= '</urlset>';
$a = 0;
$nome_arquivo = uniqid();
header('Content-disposition: attachment; filename="' . $nome_arquivo . '.xml"');
header('Content-type: "text/xml"; charset="utf8"');
readfile($nome_arquivo . '.xml');
}
}
?>
文件中的數據卡在變量$的數據,只需要使用它的數據插入信息的XML網站地圖PHP的MySQL拆分45000
如何通過創建網站地圖的代碼繼續45000點的記錄每個站點地圖(sitemap1.xml,sitemap2.xml)
誰能幫助?
'45.000'到PHP是一個小數,使用'45000'。查看分頁查詢。你也最好使用'> ='你的'=='可能永遠不會發生。 – chris85
已更改代碼。謝謝! – sysrq