私はブートストラップデータセットを使用して、APIのデータを表に表示します。ここでのデータは次のとおりです。PHPを使用してHTMLテーブルにJSONを出力する
{
"response_status": {
"status_code": 0,
"status_message": [
{
"reg_number": "123",
"company": "Company A",
"office": "Orlando",
"phone_number": "28122312345",
"postal_address": "000",
"postal_code": "000"
},
{
"reg_number": "552",
"company": "Company B",
"office": "Miami",
"phone_number": "28122312345",
"postal_address": "000",
"postal_code": "000"
},
{
"reg_number": "154",
"company": "Company C",
"office": "San Francisco",
"phone_number": "28122312345",
"postal_address": "000",
"postal_code": "000"
}
]
}
}
私はこのように、出力HTMLに結果を必要とする:
<table>
<thead>
<tr>
<th>Reg No</th>
<th>Company</th>
<th>Office</th>
<th>Phone Number</th>
<th>Postal Address</th>
<th>Postal Code</th>
</tr>
</thead>
<tbody>
<tr>
<td>123</td>
<td>Company A</td>
<td>San Francisco</td>
<td>28122312345</td>
<td>000</td>
<td>000</td>
</tr>
<tr>
<td>552</td>
<td>Company B</td>
<td>Miami</td>
<td>28122312345</td>
<td>000</td>
<td>000</td>
</tr>
<tr>
<td>154</td>
<td>Company C</td>
<td>San Francisco</td>
<td>28122312345</td>
<td>000</td>
<td>000</td>
</tr>
</tbody>
<table>
私はJSON本体を反復処理することができる方法と、自動的に出力すべてのフィールドのループがあります"status_message": [];
私のテーブルにPHPのforeachループを使用して?
[PHPでJSONからデータを抽出するにはどうすればよいですか?](http://stackoverflow.com/questions/29308898/how-do -i-extract-data-from-json-with-php) –