0
{"hari.com":{"status":"regthroughothers","classkey":"domcno"},"hari.net":{"status":"regthroughothers","classkey":"dotnet"}}

我们需要使用 php 运行循环并以下面的格式显示它就像我们需要使用 PHP、JSON 和 HTML 表单在 HTMl 表单中显示 TR 和 TD 的标签一样

像:

Hari.com    regthroughothers    price  
Hari.net    regthroughothers    price

任何人都可以在表格中显示,而且我需要在单独的 TD 中打印状态和在单独的 TD 上的价格。请像上面的示例一样帮助我基于 TLD 的我想显示输出。

4

1 回答 1

1
 <?php
 $json1='{"hari.com":{"status":"regthroughothers","classkey":"domcno"},"hari.net":      {"status":"regthroughothers","classkey":"dotnet"}}';

$json1 = json_decode($json1);

 foreach($json1 as $key=>$sel_rows)     
  {
      echo $key . " " . " welcome " . " price"; 
       echo " status: ". $sel_rows->status;
      echo "\n";                                             
  }
?>  
于 2012-11-01T07:57:44.950 回答