Apache模板引擎 mod_spin

openkk 13年前發布 | 14K 次閱讀 C語言 模板引擎

mod_spin 是一個用C語言寫的 Apache 模塊,用來提供簡單的模板語言功能,提供數據替換、應用持久化、會話跟蹤、數據庫連接池、動態鏈接、cookies、文件上傳解析以及一些MVC的簡單API。
Apache模板引擎 mod_spin

它的語法跟 Velocity 非常類似,例如:

   #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

項目主頁:http://www.baiduhome.net/lib/view/home/1322988753499

 本文由用戶 openkk 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
 轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
 本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!