alexxwiz / tiny-ssi
Tiny SSI - 非常小的服务器端包含解析器
v1.0.1
2015-11-03 09:05 UTC
Requires
- php: >=5.4.0
This package is not auto-updated.
Last update: 2024-09-28 16:05:11 UTC
README
Apache SSI (服务器端包含) 的 PHP 5.4+ 最小实现
使用方法
当前仅支持包含、设置变量和输出变量。
<!--#include virtual="header.html" --> <div class="container"> <h1>title</h1> <p class="lead"> contents </p> </div> <!--#include virtual="footer.html" -->
假设 'header.html' 和 'footer.html' 与上面的 HTML 文件在同一文件夹中,然后你可以这样做:
require_once('tiny_ssi.php'); $parser = new TinySSI; echo $parser->parse('/test/ssi_test_body.html');
许可证
MIT