将 xml 文件包含在另一个 xml 文件中

发布于 2024-11-26 21:47:54 字数 149 浏览 1 评论 0原文

在 PHP 中,可以将 1 个 php 文件包含在另一个 php.ini 中。

xml 文件有类似的东西吗?

xml 文件是一个数据库模式(用于 Propel),以及一些我计划在多个项目中使用的表。我更愿意创建 1 个 xml 文件并在需要时包含。

In PHP, it's possible to include 1 php file in another php.

Is there something similar for xml files.

The xml file is a database schema (for Propel), and some tables I plan to use in more than one project. I'd prefer to create 1 xml file and include when needed.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

过气美图社 2024-12-03 21:47:54

XML 是一个树模型 - 因此您需要至少指定要在哪个级别插入代码片段。此论坛帖子中介绍了 PHP 中包含 XML 的一种解决方法:

复制片段以供参考:

<?php header('Content-Type:text/xml'); ?>
<markers>
<?php include("moredata3.xml"); ?>
<?php include("moredata2.xml"); ?>
</markers>

XML is a tree model - so you'll need to specify at least on which level you want to insert the snippet. A kind of workaround for XML includes with PHP is presented in this forum post:

Snippet copied for reference:

<?php header('Content-Type:text/xml'); ?>
<markers>
<?php include("moredata3.xml"); ?>
<?php include("moredata2.xml"); ?>
</markers>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文