我有以下代码
function stock_agenda() {
$days = json_decode(file_get_contents(\'json_file\'));
unset($days[0]);
return \'<table class="table">
<thead>
<tr>
<th> Title </th>
<th>Content</th>
<th>Date</th>
</tr>
</thead>
<tbody>
\'. foreach($days as $day){.\'
<tr>
<td>\'.$day[0].\'</td>
<td>\'.$day[1].\'</td>
<td>\'.$day[2].\'</td>
</tr>
\'. }.\'
</tbody>
</table>\' ;
}
如何将其分配给短代码?如果我写信
foreach
内部
return
方法我得到一个错误。