PHP 8.6.0 Beta 3 is available for testing

Yaf_Application::getModules

(Yaf >=1.0.0)

Yaf_Application::getModulesGet defined module names

Опис

public function Yaf_Application::getModules(): ?array

Get the module names defined in the application.modules configuration entry. If none is defined, there will always be a single module named "Index".

Параметри

У цієї функції немає параметрів.

Значення, що повертаються

An array of module names, or null if the application is not properly initialized.

Приклади

Приклад #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
)
add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top