本文整理匯總了PHP中Docs::factory方法的典型用法代碼示例。如果您正苦於以下問題:PHP Docs::factory方法的具體用法?PHP Docs::factory怎麽用?PHP Docs::factory使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Docs
的用法示例。
在下文中一共展示了Docs::factory方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: dir_classes
protected function dir_classes()
{
$myfiles = array();
foreach (self::$include_path as $mypath) {
$myfiles = array_merge($myfiles, $this->glob_path($mypath . $this->dir . DIRECTORY_SEPARATOR . $this->file . DIRECTORY_SEPARATOR . '*', strlen($mypath)));
}
$arr_docs = array();
foreach ($myfiles as $key => $item) {
$tmpClassName = self::get_class_name($key);
if ($tmpClassName) {
if (class_exists($tmpClassName, true)) {
$arr_docs[] = Docs::factory($tmpClassName);
if ($this->dir == 'orm') {
# ORM 特殊處理
$orm_class_base = substr($tmpClassName, 0, -5);
foreach (array('data', 'finder', 'result') as $item) {
if (class_exists($orm_class_base . $item, false)) {
$arr_docs[] = Docs::factory($orm_class_base . $item);
}
}
}
}
}
}
$main_view = new View('docs/api/dir_main');
$main_view->dir = $this->dir;
$main_view->classname = $this->file;
$main_view->arr_docs = $arr_docs;
$main_view->render(true);
}