我有一个让警报引导程序使用 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 %}
你能帮我把树枝代码改成 php 代码吗?谢谢你 :)