Apache模板引擎 mod_spin
openkk
13年前
<p>mod_spin 是一个用C语言写的 Apache 模块,用来提供简单的模板语言功能,提供数据替换、应用持久化、会话跟踪、数据库连接池、动态链接、cookies、文件上传解析以及一些MVC的简单API。<br /> <img title="Apache模板引擎 mod_spin" border="0" alt="Apache模板引擎 mod_spin" src="https://simg.open-open.com/show/0479eec5b06560bb25d9bc025c88a2b3.png" width="300" height="65" /></p> <p>它的语法跟 Velocity 非常类似,例如:</p> <pre class="brush:cpp; toolbar: true; auto-links: false;"> #for(${reference}) some text within the loop and a ${reference.column} #end #if(${reference}) some text to replace if ${reference} is not NULL #else some text to replace if ${reference} is NULL #end #unless(${reference}) some text to replace if ${reference} is NULL #else some text to replace if ${reference} is not NULL #end</pre> <p><strong>项目主页:</strong><a href="http://www.open-open.com/lib/view/home/1322988753499" target="_blank">http://www.open-open.com/lib/view/home/1322988753499</a></p> <p></p>