gpt4 book ai didi

php - 我如何在 Twig(自定义 Controller ?)中使用我的 php

转载 作者:行者123 更新时间:2023-11-27 23:50:51 25 4
gpt4 key购买 nike

我有点问题。我正在为一个篮球俱乐部制作一个网站,在这个网站中,每个球队都有一个页面,在这个页面中有两个 div(只说一个,我知道如何做两次 :))。这个 div 充满了我从 JSON 中获得的信息,并被放入一个表中。我有一个工作代码,但现在我的网站在 php 框架 Twig 中。现在代码不再起作用了。我从我的老师那里听说我必须为 Twig 制作一个自定义 Controller 。这是什么,我该怎么做?

PHP 代码:

<?php
function getTableC($link)
{
$json = file_get_contents($link);
$data = json_decode($json);



if (count($data->wedstrijden)) {
// Open the table
echo "<table class=\"table table-bordered\">
<tr>
<th>Datum</th>
<th>Tijd</th>
<th>Thuis</th>
<th>Uit</th>
<th>Uitslag</th>
</tr>";


//Cycle through the array
foreach ($data->wedstrijden as $idx => $wedstrijden) {
$arrDate = explode(' ', $wedstrijden->datum);
$arrTime = explode(':', $arrDate[1]);
// Output a row
echo "<tr>";
echo "<td>$arrDate[0]</td>";
echo "<td>$arrTime[0]:$arrTime[1]</td>";
echo "<td>$wedstrijden->thuis_ploeg</td>";
echo "<td>$wedstrijden->uit_ploeg</td>";
echo "<td>$wedstrijden->score_thuis - $wedstrijden->score_uit</td>";
echo "</tr>";

}



// Close the table
echo "</table>";
}
}
?>

编辑 1:我曾经用它来包含 php 代码:

<!-- Content Text-->
<div class="panel-box">
<div class="titles">
<h4>Aankomende Wedstrijden</h4>
</div>
<div class="row">
<div class="col-md-12" id="standtable">
<?php include("php/competitie.php"); echo getTableC("http://west.basketball.nl/db/json/wedstrijd.pl?cmp_ID=411&plg_ID=10845"); ?>
</div>
</div>

最佳答案

如果您能详细说明您使用 twig 的上下文,我可以给您一个更具体的答案。

Twig 使您能够放置功能,例如在模板中迭代数组。

当您的 php 代码被执行时,基本上应该发生的是您收集所有需要的数据并将其传递给您的 twig 模板。然后 twig 呈现您的页面。

从您的代码开始,这在 PHP 端可能看起来像这样。具体取决于您是否使用像 symfony 这样的框架。以下假设您使用的是没有框架的平面 php(另请参阅 twig docs):

 function renderPage($link)
{
// twig stuff
require_once '/path/to/lib/Twig/Autoloader.php';
Twig_Autoloader::register();
$loader = new Twig_Loader_Filesystem('/path/to/templates');
$twig = new Twig_Environment($loader, array(
'cache' => '/path/to/compilation_cache',
));

// get your data
$json = file_get_contents($link);
$data = json_decode($json);

echo $twig->render('table.html', array('tableData' => $data->wedstrijden));
}

和模板table.html:

...
<!-- Content Text-->
<div class="panel-box">
<div class="titles">
<h4>Aankomende Wedstrijden</h4>
</div>
<div class="row">
<div class="col-md-12" id="standtable">
{# here the table is built #}
{% if tableData is not empty %}
<table class="table table-bordered">
<tr>
<th>Datum</th>
<th>Tijd</th>
<th>Thuis</th>
<th>Uit</th>
<th>Uitslag</th>
</tr>
{% for row in tableData %}
{% set aDate = row.datum|split(' ') %}
{% set aTime = aDate[1]|split(':') %}
<tr>
<td>{{ aDate[0] }}</td>
<td>{{ aTime[0] }}:{{ aTime[1] }}</td>
<td>{{ row.thuis_ploeg }}</td>
<!-- ... and so on -->
</tr>
{% endfor %}
</table>
{% endif %}

</div>
</div>
...

关于php - 我如何在 Twig(自定义 Controller ?)中使用我的 php,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27522313/

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