当前位置: 首页>>代码示例>>PHP>>正文


PHP DBUtils::SetProject方法代码示例

本文整理汇总了PHP中DBUtils::SetProject方法的典型用法代码示例。如果您正苦于以下问题:PHP DBUtils::SetProject方法的具体用法?PHP DBUtils::SetProject怎么用?PHP DBUtils::SetProject使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在DBUtils的用法示例。


在下文中一共展示了DBUtils::SetProject方法的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>";
 }
开发者ID:wahgithub,项目名称:chits_wah_emr,代码行数:44,代码来源:jpgenhtmldoc.php


注:本文中的DBUtils::SetProject方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。