在php页面中回显或包含多个xml文件

时间:2016-11-11 14:13:52

标签: php xml

我希望在php文件中创建XML文件列表。

我需要将所有xml文件都包含在我的php文件中。我有这个工作见下文。

<?php
header('Content-type: application/xml');
echo file_get_contents("exam1.xml");

当我尝试这个时效果很好,现在我尝试不止一个。

    <?php
header('Content-type: application/xml');
echo file_get_contents("exam1.xml");
echo file_get_contents("exam2.xml");

它不会读取任何文件。

1 个答案:

答案 0 :(得分:2)

我会尝试在JSON对象中传回这些文件。

创建一个文件数组,然后创建 <foo ng-repeat="order in $ctrl.orders" label="order.orderNum" callback="$ctrl.myCallback(order)></foo> 该数组。

json_encode()

现在你将有一个简单的json对象,你可以在javascript中处理,并使用直接的javascript将你想要的1个或多个xml文件放在页面上