4 Star 3 Fork 2

mimvp / mimvp-sitemap-php

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
test_xml2html.php 363 Bytes
一键复制 编辑 原始数据 按行查看 历史
homer 提交于 2017-08-08 22:12 . commit mimvp-sitemap-php
<?php
header("Content-Type: text/html; charset=UTF-8");
$xml = new DOMDocument();
$xml->Load("sitemap.xml");
$xsl = new DOMDocument();
$xsl->Load("sitemap-xml.xsl");
$xslproc = new XSLTProcessor();
$xslproc->importStylesheet($xsl);
echo $xslproc->transformToXML($xml);
$f = fopen('sitem.html', 'w+');
fwrite($f, $xslproc->transformToXML($xml));
fclose($f);
?>
PHP
1
https://gitee.com/mimvp_admin/sitemap-php.git
git@gitee.com:mimvp_admin/sitemap-php.git
mimvp_admin
sitemap-php
mimvp-sitemap-php
master

搜索帮助