本文整理汇总了PHP中DBUtils::GetProject方法的典型用法代码示例。如果您正苦于以下问题:PHP DBUtils::GetProject方法的具体用法?PHP DBUtils::GetProject怎么用?PHP DBUtils::GetProject使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DBUtils
的用法示例。
在下文中一共展示了DBUtils::GetProject方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Start
function Start($aDBServer, $aProjName)
{
$dbutils = new DBUtils($aDBServer);
$dbutils->SetProject($aProjName);
$this->iDirectory = $dbutils->GetProjDir($aProjName);
$this->iProjName = $aProjName;
$proj = $dbutils->GetProject();
$this->iShowPrivate = $dbutils->GetShowPrivate($aProjName);
$this->iDocType = $proj['fld_doctype'];
$ds = new DocStat($dbutils);
list($avg, $nc, $nm) = $ds->ProjStat($aProjName);
$t = '<table width=100% border=1 style="background-color:lightblue;"><tr><td align=center><span style="font-size:20pt;font-family:arial;font-weight:bold;">' . $aProjName . "</span></td></tr></table>\n";
$t .= '<div align=center><h3 style="color:darkred;font-family:arial;">Documentation status: ' . round($avg * 100) . '%</h3>';
$t .= '<span style="font-family:arial;">Total number of Classes: ' . $nc . ', Methods: ' . $nm . "</span><p>\n";
if ($this->iShowPrivate) {
$t .= '<i>This version <b>includes</b> private methods & classes</i><p>';
} else {
$t .= '<i>This version does <b>not</b> include private methods & classes</i><p>';
}
$t .= '<p><i>Generated at ' . strftime('%d %b %Y at %H:%M') . "</i><br>\n";
$t .= "</div><hr>";
$t .= "<p>" . $proj['fld_desc'];
if ($this->iDocType == 0) {
$dt = 'HTML: Multiple files.';
$this->iWriter->Open($this->iDirectory . 'projinfo.html');
$this->iWriter->W($t);
$this->iWriter->Close();
$this->iWriter->Open($this->iDirectory . 'index.html');
$this->iWriter->W($this->iIndexFramePage);
$this->iWriter->Close();
} else {
$dt = 'HTML: Single file.';
$this->iWriter->Open($this->iDirectory . 'index.html');
$this->iWriter->W($this->iIndexPage);
$this->iWriter->W($this->iCSS);
$this->iWriter->W($t);
}
HTMLGenerator::CloseWinButton('left');
echo "<hr>";
echo "<font face=arial><b>Generating reference for project : <font color=blue>{$aProjName}</font></b></font><br>";
echo "Output directory: <b><font color=blue>" . $this->iDirectory . '</font></b><br>';
echo "Output format: <b><font color=blue>{$dt}</font></b> <p>\n";
echo "<hr>";
}