コード例 #1
0
ファイル: Html.php プロジェクト: laiello/asar-web-framework
 private function createDebugTableData($debug)
 {
     $data = '';
     foreach ($debug as $name => $value) {
         $id = StringUtility::underScore($name);
         $data .= $this->element('tr', $this->element('th', $name, array('scope' => 'row', 'id' => 'asarwf_dbgl_' . $id)) . $this->element('td', $this->createDataValues($value), array('id' => 'asarwf_dbgv_' . $id)));
     }
     return $data;
 }