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.
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: