Dutch PHP Conference 2027

Yaf_Dispatcher::getDefaultModule

(Yaf >=3.2.0)

Yaf_Dispatcher::getDefaultModuleRetrieve the default module name

説明

public function Yaf_Dispatcher::getDefaultModule(): ?string

Get the default module name, which is used when a module name can not be extracted from the request URI. Defaults to "Index".

パラメータ

この関数にはパラメータはありません。

戻り値

The default module name, or null if the application is not initialized.

例1 Yaf_Dispatcher::getDefaultModule() example

<?php
$app = new Yaf_Application(dirname(__FILE__) . "/conf/application.ini");

var_dump(Yaf_Dispatcher::getInstance()->getDefaultModule());
?>

上の例の出力は、 たとえば以下のようになります。

string(5) "Index"

参考

add a note

User Contributed Notes

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