警告bootstrap编码树枝到PHP

时间:2013-01-10 05:15:33

标签: php twitter-bootstrap twig

我有来自某人的编码使用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 %}

你可以帮我修改twig代码到php代码吗? 谢谢你:))

1 个答案:

答案 0 :(得分: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 } } ?>