gpt4 book ai didi

syntax - Smarty + Prestashop : Include template if exists

转载 作者:行者123 更新时间:2023-12-04 00:13:24 25 4
gpt4 key购买 nike

我有以下代码,如果它存在,我想包含一个模板,否则回退到简单地输出内容。

{if $smarty->template_exists("$tpl_dir./cms.tpl")}
{include file="$tpl_dir/$cms->link_rewrite.tpl"}
{ else }
{$cms->content}
{ /if }

据我所知,我的语法是正确的,但我可能是错误的,因为我是新手。知道我做错了什么(我想也许是串联)?

最佳答案

如果您的文件在同一文件夹中,请尝试此操作:

{assign var="file" value="`$smarty.current_dir`/file_name.tpl"}
{if $file|file_exists}
{include file=$file}
{/if}

关于syntax - Smarty + Prestashop : Include template if exists,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21676198/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com