<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[向东博客 专注WEB应用 构架之美 --- 构架之美，在于尽态极妍 | 应用之美，在于药到病除]]></title> 
<link>http://www.jackxiang.com/index.php</link> 
<description><![CDATA[赢在IT，Playin' with IT,Focus on Killer Application,Marketing Meets Technology.]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[向东博客 专注WEB应用 构架之美 --- 构架之美，在于尽态极妍 | 应用之美，在于药到病除]]></copyright>
<item>
<link>http://www.jackxiang.com/post//</link>
<title><![CDATA[Blitz templates 最快的PHP模板引擎]]></title> 
<author>jack &lt;xdy108@126.com&gt;</author>
<category><![CDATA[WEB2.0]]></category>
<pubDate>Fri, 23 Oct 2009 13:48:02 +0000</pubDate> 
<guid>http://www.jackxiang.com/post//</guid> 
<description>
<![CDATA[ 
	最近接手的一项工作是重构职友集　http://www.jobui.com　和百才招聘　http://www.baicai.com，找到一个非常快速的PHP模板引擎：Blitz Templates。顺便就花了1天时间翻译了一下它的文档，希望对大家有用！<br/><br/>　　文档路径：http://www.igaom.cn/blitz/Blitz_Docs.html<br/><br/>　　简介：<br/><br/>　　Blitz templates 是一个用C语言开发的快速的PHP模板引擎，它是作为一个PHP的扩展功能。它开始作为一个php_templates更换，但发展到更多的工作。它是基于可扩展的模板控制器（自定义视图类在PHP ）和简单的逻辑 。基准测试表明，这是最快的一个PHP的模板引擎，使Web应用程序更接近于一个聪明的MVC 结构模型，最大从您的代码分离出HTML。 这是专为大高负荷的有许多复杂的演示文稿的逻辑的互联网项目。<br/><br/>　　下图是几个模板的性能测试结果：<br/><br/><a href="http://www.jackxiang.com/attachment.php?fid=32" target="_blank"><img src="http://www.jackxiang.com/attachment.php?fid=32" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/><br/><br/>示例模板代码：<br/><br/>　　index.html<br/><br/>　　index.html<br/><br/>　　Html代码　　<br/><br/><br/><div class="code">&lt;html&gt;　<br/>&lt;head&gt;&lt;title&gt;&#123;&#123;　$title　&#125;&#125;&lt;/title&gt;&lt;/head&gt;　<br/>&lt;body &gt;　<br/>&#123;&#123;　include(&#039;header.tpl&#039;)　&#125;&#125;　<br/>&#123;&#123;　list_news()　&#125;&#125;　<br/>&#123;&#123;　include(&#039;footer.tpl&#039;)　&#125;&#125;　<br/>&lt;/body&gt;　<br/>&lt;/html&gt; 　</div><br/><br/>　　index.php<br/><br/>　　Php代码　　<br/><br/><br/><div class="code">&lt;?php　<br/>　　$view　=　new　Blitz(&#039;index.html&#039;);　<br/>　　function　list_news()&#123;　<br/>　　　....　<br/>　　&#125;　<br/>　　$view　-&gt;　parse();　<br/>?&gt;</div>
]]>
</description>
</item><item>
<link>http://www.jackxiang.com/post//#blogcomment</link>
<title><![CDATA[[评论] Blitz templates 最快的PHP模板引擎]]></title> 
<author> &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate> 
<guid>http://www.jackxiang.com/post//#blogcomment</guid> 
<description>
<![CDATA[ 
	
]]>
</description>
</item>
</channel>
</rss>