(Yaf >=3.2.0)
Yaf_Dispatcher::getDefaultController — Retrieve the default controller name
Get the default controller name, which is used when a controller name
can not be extracted from the request URI. Defaults to
"Index".
У цієї функції немає параметрів.
The default controller name, or null if the application is not
initialized.
Приклад #1 Yaf_Dispatcher::getDefaultController() example
<?php
$app = new Yaf_Application(dirname(__FILE__) . "/conf/application.ini");
var_dump(Yaf_Dispatcher::getInstance()->getDefaultController());
?>Поданий вище приклад виведе щось схоже на:
string(5) "Index"