Yaf_Application
PHP Manual

Yaf_Application::getModules

(PECL yaf >=1.0.0)

Yaf_Application::getModulesGet defined module names

说明

public array Yaf_Application::getModules ( void )

Get the modules list defined in config, if no one defined, there will always be a module named "Index".

Warning

本函数还未编写文档,仅有参数列表。

参数

此函数没有参数。

返回值

范例

Example #1 Yaf_Application::getModules()example

<?php
$config 
= array(
    
"application" => array(
        
"directory" => realpath(dirname(__FILE__)) . "/application",
    ),
);

/** Yaf_Application */
$application = new Yaf_Application($config);
print_r($application->getModules());
?>

以上例程的输出类似于:

Array
(
    [0] => Index
)

Yaf_Application
PHP Manual