alexxwiz / tiny-ssi
Tiny SSI - very small Server Side Includes parser
v1.0.1
2015-11-03 09:05 UTC
Requires
- php: >=5.4.0
This package is not auto-updated.
Last update: 2026-05-10 01:05:36 UTC
README
A minimal implementation of Apache SSI (server-side includes) for PHP 5.4+
Usage
Currently only supports doing includes, set var and echo var.
<!--#include virtual="header.html" --> <div class="container"> <h1>title</h1> <p class="lead"> contents </p> </div> <!--#include virtual="footer.html" -->
expecting that 'header.html' and 'footer.html' are in the same folder as the above html file, you can then do:
require_once('tiny_ssi.php'); $parser = new TinySSI; echo $parser->parse('/test/ssi_test_body.html');
License
MIT