我正在尝试将 XML 中的内容转换为 HTML,以显示在浏览器上,我找到了在线转换器,这里是链接https://codebeautify.org/xml-to-html-converter它的作用是,基本上它获取XML数据并给出html输出,如下图所示
但我想在 PHP 中执行此操作,我在 google 中搜索过此内容,但没有找到相关的解决方案。
下面是我尝试过的
<?php
$file = 'https://demo.conitor.in/Remembered/views/feed.php';
if(!$xml = simplexml_load_file($file)){
echo "file not found!";
} else {
echo "<pre>";
print_r($xml);
echo "</pre>";
}
?>
这是我的 xml 数据 URL:- https://demo.conitor.in/Remembered/views/feed.php
宝慕林4294392