2017-04-09 11 views
0

私はブートストラップデータセットを使用して、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ループを使用して?

+1

[PHPでJSONからデータを抽出するにはどうすればよいですか?](http://stackoverflow.com/questions/29308898/how-do -i-extract-data-from-json-with-php) –

答えて

0

は、あなたのデータは$データ変数に格納されていると、あなたのコードは次のようにする必要があります:

<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> 
    <?php foreach($data->response_status->status_message as $message) : ?> 
    <tr> 
     <td><?php echo $message->reg_number; ?></td> 
     <td><?php echo $message->company; ?></td> 
     <td><?php echo $message->office; ?></td> 
     <td><?php echo $message->phone_number; ?></td> 
     <td><?php echo $message->postal_address; ?></td> 
     <td><?php echo $message->postal_code; ?></td> 
    </tr> 
    <?php endforeach; ?> 
</tbody> 
<table> 
+0

これは動作していません – nick

+0

それはうまくいくはずです!どんなエラーが発生しましたか? – MoeinPorkamel

+0

foreach()に対して非オブジェクトと無効な引数のプロパティを取得しようとしています。自分でスニペットを試しましたか? – nick

0

あなたのデータは、いくつかの変数に格納されて考えると$ your_data ... 使用json_decode($ your_data、言いますtrue)を使用して配列形式のデータを取得します。次に配列をループします

関連する問題