我有来自某人的编码使用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">×</button>
{{ app.session.flash(alert) }}
</div>
{% endif %}
{% endfor %}
{% block content %}
{% endblock %}
你可以帮我修改twig代码到php代码吗? 谢谢你:))
答案 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">×</button>
<?php echo $_SESSION["flash"][$alert]; ?>
</div>
<?php } } ?>