将 xml 文件包含在另一个 xml 文件中
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
XML 是一个树模型 - 因此您需要至少指定要在哪个级别插入代码片段。此论坛帖子中介绍了 PHP 中包含 XML 的一种解决方法:
复制片段以供参考:
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: