本文整理汇总了PHP中debug::row_top方法的典型用法代码示例。如果您正苦于以下问题:PHP debug::row_top方法的具体用法?PHP debug::row_top怎么用?PHP debug::row_top使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类debug
的用法示例。
在下文中一共展示了debug::row_top方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: show
/**
* Generating Debug-Table (Simple HTML)
* @todo Make Funktions for automatic add/generate Sections ala Timer, Vars, etc.
* @todo Add "Jump Top" Links
* @return string HTML-Table
*/
function show()
{
if ($this->mode > 0) {
$this->tracker("END DEBUG-CLASS");
$out .= "<div align=\"left\"><table width=\"100%\" border=\"0\" cols=\"0\" cellpadding=\"0\" cellspacing=\"0\">";
/* $out .= debug::row_top("<a name=\"debug_top\"><b>Quicknavi</b></a>");
$out .= debug::row_single("<a href=\"#debugtracker\">Debugtracker</a> | "
."<a href=\"#debugvars\">User-Debugvars</a> | "
."<a href=\"#post\">\$_POST</a> | "
."<a href=\"#get\">\$_GET</a> | "
."<a href=\"#cookie\">\$_COOKIE</a> | "
."<a href=\"#session\">\$_SESSION</a> | "
."<a href=\"#server\">\$_SERVER</a> | "
."<a href=\"#files\">\$_FILES</a> | "
."<a href=\"#sql_querys\">SQL-Querys</a>");*/
$out .= debug::row_top("<a name=\"debugtracker\"><b>Debugtracker</b></a>");
$out .= debug::row_single($this->timer_show());
/*
$out .= debug::row_top("<a name=\"debugvars\"><b>Userdefined Debugvars</b></a>");
$out .= debug::row_array($this->debugvars);
$out .= debug::row_top("<a name=\"post\"><b>\$_POST-Data</b></a>");
$out .= debug::row_array($_POST);
$out .= debug::row_top("<a name=\"get\"><b>\$_GET-Data</b></a>");
$out .= debug::row_array($_GET);
$out .= debug::row_top("<a name=\"cookie\"><b>\$_COOKIE-Data</b></a>");
$out .= debug::row_array($_COOKIE);
$out .= debug::row_top("<a name=\"session\"><b>\$_Session-Data</b></a>");
$out .= debug::row_array($_SESSION);
$out .= debug::row_top("<a name=\"server\"><b>\$_SERVER-Data</b></a>");
$out .= debug::row_array($_SERVER);
$out .= debug::row_top("<a name=\"files\"><b>\$_FILES-Data</b></a>");
$out .= debug::row_array($_FILES);
*/
$out .= debug::row_top("<a name=\"sql_querys\"><b>SQL-Querys (" . count($this->sql_query_list) . ")</b></a>");
$out .= $this->query_fetchlist();
$out .= "</table></div>";
// Mode 2 write complete Debugvars to a file. The directory has to be protected.
if ($this->mode == "2") {
echo $this->mode;
$file_handle = fopen($this->debug_path . "debug_" . time() . ".htm", "a");
fputs($file_handle, $out);
fclose($file_handle);
}
return $out;
} else {
return "";
}
}