所以基本上,只是偶然发现了PHP的框架或其他功能,我还没有看到。所有函数都是用PHP编写的 - oop类型,但是html文件真的很深(在文件夹中),这里是一个html文件的例子 -
代码 -
<h1>{$category[0].name}</h1>
<table cellpadding="0" cellspacing="0" width="100%">
{section name=id loop=$products}
<tr>
{section name=id2 loop=$products[id]}
{if $products[id][id2].id}
<td width="100%" valign="top" width="130">
<table cellpadding="1" cellspacing="0" width="100%">
<tr>
<td valign="top" align="left" width="195">
<a href="{$smarty.const._URL_ROOT}/{$page.lang}/product/{$products[id][id2].id}/{if $page.eshop eq 1}1/{/if}"><img src="{$smarty.const._URL_PREFIX}/data/img/{$products[id][id2].filename}_list.jpg" alt="" /></a>
</td>
<td width="15"></td>
<td valign="top" align="left">
<a href="{$smarty.const._URL_ROOT}/{$page.lang}/product/{$products[id][id2].id}/{if $page.eshop eq 1}1/{/if}"><h1>{$products[id][id2].name}</h1></a>
{if $page.eshop eq 1}
<table cellpadding="0" cellspacing="0" class="prodListPrice">
<tr>
<td colspan="3" class="top"> </td>
</tr>
<tr>
<td class="middle">
##PROD_PRICE_1##<br/>
<span>{$products[id][id2].price_1} {$products[id][id2].price_from|stripslashes}</span>
</td>
<td class="middle">
##PROD_PRICE_2##<br/>
<span>{$products[id][id2].price_2} {$products[id][id2].price_from|stripslashes}</span>
</td>
</tr>
<tr>
<td colspan="3" class="bottom"> </td>
</tr>
</table>
{/if}
<div class="br5"></div>
<div>{$products[id][id2].stext|stripslashes}</div>
</td>
</tr>
</table>
</td>
{else}
<td>
</td>
{/if}
{/section}
</tr>
你有什么线索这可能是什么类型的框架?
答案 0 :(得分:5)
这是Smarty模板。我不确定哪个(如果有的话)框架使用Smarty作为他们的视图模板引擎。
答案 1 :(得分:0)
Smarty是一个模板引擎而不是框架。可以在任何现有框架中使用smarty。一些电子商务和CMS系统仍然像X-cart一样使用smarty。如果您发现smarty中的某些内容对缓存tamplates有用,那么您可以使用您喜欢的任何框架配置smarty。