gpt4 book ai didi

php - 在 Twig 中打印数组

转载 作者:太空宇宙 更新时间:2023-11-04 10:27:02 25 4
gpt4 key购买 nike

我有一个包含这些列的表格:

login ,couleur1,parties,gagnees

我想打印一个和这个完全一样的数组:

enter image description here

在 Silex 中,我获取数组中的所有数据

$app->get('/userlist', function(Application $app) {

$recup= $app['db']->executeQuery('SELECT * FROM users');
$results = $recup->fetchAll();

return $app['twig']->render('example.twig', array('users' => $results));
});

$app->run();
[enter image description here][2]?>

在 Twig 中,我尝试对齐它们,但无法像照片中那样对齐。

 {% for row in users %}
<ul style="list-style: none;">
<li style="float:left; margin-right:30px" >{{ row.login }}</li>
<li style="float:left; margin-right:30px">{{row.parties}}</li>
<li style="float:left; margin-right:30px">{{row.couleur1}}</li>
<li style="float:both">{{row.couleur2}}</li>
</ul>
{% endfor %}

我会在不分离 CSS 和 Twig 的情况下做到这一点。

最佳答案

它会是这样的:

<table>
<tr>
<td>Joueur</td>
<td>Parties</td>
<td>Gagness</td>
<td>Colueur Preferee</td>
</tr>
{% for row in users %}
<tr>
<td>{{ row.login }}</td>
<td>{{row.parties}}</td>
<td>{{row.couleur1}}</td>
<td>{{row.couleur2}}</td>
</tr>
{% endfor %}

</table>

并为颜色和外观应用一些 CSS。

关于php - 在 Twig 中打印数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36701927/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com