1

所以基本上,只是偶然发现了我没有见过的 PHP 的框架或其他功能。所有函数都是用 PHP 编写的 - oop 类型,但 html 文件非常深(在文件夹中),这是 html 文件之一的示例 -

http://jsfiddle.net/x2tgt/

代码 -

<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">&nbsp;</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">&nbsp;</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>​

你知道这可能是什么类型的框架吗?

4

2 回答 2

5

这是一个Smarty模板。我不确定哪些(如果有的话)框架使用 Smarty 作为他们的视图模板引擎。

于 2012-08-01T08:25:07.317 回答
0

Smarty 是一个模板引擎,而不是一个框架。可以在任何现有框架中使用 smarty。一些电子商务和 CMS 系统仍然像 X-cart 一样使用 smarty。如果你在 smarty 中发现一些对你有用的东西,比如缓存模板,你可以使用任何你喜欢的框架来配置 smarty。

于 2012-08-01T08:38:49.720 回答