私は、次のJSONテーブルforeachの列を返し、私はテーブルにそれを有効にする必要があり
[
["TITLE", "CONTENT", "DATE"],
["Monday", "Content of the monday post goes here", "09:55\n10:00\n10:30\n11:00\n15:45"],
["Tuesday", "Content of the tuesday day goes here", "08:00\n11:00\n16:00\n16:00\n21:00\n"],
]
私はforeach
がjson
内容に
$days = json_decode(file_get_contents('json_file'));
foreach($days as $item){
if(isset($item)){
$firstColumn = $item;
}
echo $firstColumn[0];
};
$firstColumn[0]
リターンを得るために使用する「タイトル」 、 "Monday"、 "Friday"
テーブルに追加するにはどうすればよいですか?
<table class="table">
<thead>
<tr>
<th> Title </th>
<th>Content</th>
<th>Date</th>
</tr>
</thead>
<tbody>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
任意のJSONからテーブルをレンダリングするには、以下を使用してのようにあなたはそれを試すことができますしかし、それを関数内のリターンにどのように追加できますか? – Radu033
http://prntscr.com/h8oesh – Radu033
@ Radu033これを詳しく説明できます: - '関数内の戻り値にどのように追加できますか? ' –