使用 tpl 在 php 模板中使用 if 语句

发布于 2024-10-17 08:27:11 字数 74 浏览 1 评论 0原文

我如何解析 {if game > 4}{somecontent}{/if} 来自使用 PHP 的模板。

How can i parse {if game > 4}{somecontent}{/if} from a template using PHP.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

半寸时光 2024-10-24 08:27:11

使用普通的旧 PHP 有什么问题?它更快而且更简单。

<?php if ( $game > 4 ): ?>
some content
<?php endif ?>

如果您真的坚持,这里是一个开始(未经测试):

<?php
preg_match_all('/\{if ([^}]+)\}.+?\{\/if\}/s', $content, $matches)

foreach ( $matches as $match )
{
    $expression = $match[1];

    // Evaluate expression

    $content = preg_replace($match[0], $true ? $match[1] : '', $content);
}
?>

这非常简单,当您想要使用嵌套语句时,它会变得非常棘手。

What's wrong with using plain old PHP? It's much faster and a whole lot simpler.

<?php if ( $game > 4 ): ?>
some content
<?php endif ?>

If you really insist, here's a start (untested):

<?php
preg_match_all('/\{if ([^}]+)\}.+?\{\/if\}/s', $content, $matches)

foreach ( $matches as $match )
{
    $expression = $match[1];

    // Evaluate expression

    $content = preg_replace($match[0], $true ? $match[1] : '', $content);
}
?>

This is pretty simple, it get's really hairy when you want to work with nested statements.

长发绾君心 2024-10-24 08:27:11

您可以使用 smarty 模板引擎解析该语法。

http://www.smarty.net/crash_course

You can parse that syntax using smarty template engine.

http://www.smarty.net/crash_course

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文