0

我有一个让警报引导程序使用 twig 而不是 php 的编码,我会将其更改为 php 编码,这是 twig 编码:

            {% for alert in [ 'info', 'success', 'warning', 'error'] %}
            {% if app.session.hasFlash(alert) %}
            <div class="alert alert-{{ alert }}">
                <button class="close" data-dismiss="alert">&times;</button>
                {{ app.session.flash(alert) }}
            </div>
            {% endif %}
            {% endfor %}

            {% block content %}
            {% endblock %}

你能帮我把树枝代码改成 php 代码吗?谢谢你 :)

4

1 回答 1

0

简单的...

<?php
    if (in_array($alert, array('info', 'success', 'warning', 'error')) {
        if (isset($_SESSION["flash"][$alert])) { ?>
    <div class="alert alert-<?php echo $alert; ?>">
        <button class="close" data-dismiss="alert">&times;</button>
        <?php echo $_SESSION["flash"][$alert]; ?>
    </div>
<?php } } ?>
于 2013-01-10T05:19:26.227 回答