Smarty模板引擎,如何检查字符串是否以模板中的子字符串结尾

时间:2018-09-03 11:43:15

标签: php templates smarty template-engine smarty3

如何检查smarty3模板中的字符串是否以子字符串结尾?

类似的东西:

{if string|ends_with:substring}
    String realy ends with substring
{/if}

1 个答案:

答案 0 :(得分:0)

您可以使用php substr:

{if ($string|substr:N:M) == "wantedSubstring"}
    ...
{/if}

其中N和M是您的子字符串索引。

查看substr手册中的语法。